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

Unified Diff: pkg/kernel/testcases/reify/generic_methods_bounds_test.dart

Issue 2756693002: Add generic-methods 'golden' tests for 'reify' transformation (Closed)
Patch Set: Mark tests with Crash/Fail in reify.status instead of excluding Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
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);
+}
« no previous file with comments | « pkg/kernel/test/reify/reify.status ('k') | pkg/kernel/testcases/reify/generic_methods_bounds_test.dart.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698