Index: tests/language/function_subtype_closure0_test.dart |
diff --git a/tests/language/checked_setter_test.dart b/tests/language/function_subtype_closure0_test.dart |
similarity index 50% |
copy from tests/language/checked_setter_test.dart |
copy to tests/language/function_subtype_closure0_test.dart |
index 608a472f9c8dc27855c6bfa9650b6cfcec970635..1d6437bcfb21d50ef8a97976f275b680e265d625 100644 |
--- a/tests/language/checked_setter_test.dart |
+++ b/tests/language/function_subtype_closure0_test.dart |
@@ -1,32 +1,36 @@ |
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+// Dart test program for constructors and initializers. |
-// Test that implicit setters in checked mode do a type check. |
+// Check function subtyping of static functions. |
-import "package:expect/expect.dart"; |
+import 'package:expect/expect.dart'; |
-class A { |
- C c; |
-} |
+typedef I<T> f2<T>(); |
-class B extends A { |
+class X { |
+ static J<bool> f1() => null; |
} |
-class C { |
+class C<T> { |
+ C(f2<T> f); |
} |
-var array = [new B()]; |
+class I<T> {} |
+class J<T> extends I<int> {} |
main() { |
- array[0].c = new C(); |
+ |
bool inCheckedMode = false; |
try { |
String a = 42; |
} catch (e) { |
inCheckedMode = true; |
} |
+ |
+ new C<int>(X.f1); |
if (inCheckedMode) { |
- Expect.throws(() => array[0].c = new B(), (e) => e is TypeError); |
+ Expect.throws(() => new C<bool>(X.f1), (e) => true); |
} |
-} |
+} |