Index: tests/language/function_subtype_factory1_test.dart |
diff --git a/tests/language/function_subtype_factory1_test.dart b/tests/language/function_subtype_factory1_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2242d93e880a4b811246bcbcdb82bbab0b34f401 |
--- /dev/null |
+++ b/tests/language/function_subtype_factory1_test.dart |
@@ -0,0 +1,37 @@ |
+// 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. |
+ |
+// Check function subtyping with type variables in factory constructors. |
+ |
+import 'package:expect/expect.dart'; |
+ |
+class C<T> { |
+ factory C(void foo(T t)) => new C.internal(); |
+ C.internal(); |
+} |
+ |
+void method1(int i) {} |
+void method2(String s) {} |
+ |
+void main() { |
+ Expect.isNotNull(new C<int>(method1)); |
+ Expect.isNotNull(new C<String>(method2)); |
+ try { |
+ new C<bool>(method2); |
+ Expect.isFalse(isCheckedMode()); |
+ } catch (e) { |
+ Expect.isTrue(isCheckedMode()); |
+ } |
+} |
+ |
+isCheckedMode() { |
+ try { |
+ var i = 1; |
+ String s = i; |
+ return false; |
+ } catch (e) { |
+ return true; |
+ } |
+} |