Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: tests/language_strong/unused_overridden_async_test.dart

Issue 3008723002: Migrate block 163 to Dart 2.0. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4 import 'dart:async';
5
6 class Base {
7 Future<int> method() async {
8 throw 'Should be unused';
9 }
10 }
11
12 class Sub1 extends Base {
13 @override
14 Future<int> method() async {
15 return 1;
16 }
17 }
18
19 class Sub2 extends Base {
20 @override
21 Future<int> method() async {
22 return 2;
23 }
24 }
25
26 help(Base object) async {
27 print(await object.method());
28 }
29
30 main() async {
31 await help(new Sub1());
32 await help(new Sub2());
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698