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

Side by Side Diff: tests/language/function_subtype_typearg3_test.dart

Issue 12334070: Support runtime check of function types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fix Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 // Dart test program for constructors and initializers.
4 5
5 // Test that dart2js uses the right interceptor when call a method on 6 // Check function subtyping of type arguments.
6 // something that has type number.
7 7
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 9
10 var array = []; 10 class C<T> {}
11
12 class I {}
13 class J extends I {}
14
15 typedef J f1();
16 typedef I f2();
11 17
12 main() { 18 main() {
13 array.add(false); 19 Expect.isTrue(new C<f1>() is C<f2>);
14 var x = array[0] ? 1.5 : 2; 20 }
15 Expect.isTrue(x.isEven);
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698