Index: pkg/kernel/testcases/reify/generic_methods_bounds_test.dart |
diff --git a/pkg/kernel/testcases/reify/generic_methods_bounds_test.dart b/pkg/kernel/testcases/reify/generic_methods_bounds_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4007e5c3d3e4f6b00e45f593fc4282dbefcdd9c1 |
--- /dev/null |
+++ b/pkg/kernel/testcases/reify/generic_methods_bounds_test.dart |
@@ -0,0 +1,23 @@ |
+// Copyright (c) 2017, 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. |
+ |
+// Test that a dynamic call to a generic function checks the type argument |
+// against its bound. |
+ |
+library generic_methods_bounds_test; |
+ |
+import "test_base.dart"; |
+ |
+class A {} |
+ |
+class B {} |
+ |
+class C { |
+ void fun<T extends A>(T t) {} |
+} |
+ |
+main() { |
+ dynamic obj = new C(); |
+ expectThrows(() => obj.fun<B>(new B()), (e) => e is TypeError); |
+} |