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

Unified Diff: pkg/front_end/testcases/runtime_checks/dynamic_invocation.dart

Issue 3002893002: Begin writing tests of the runtime checks needed for Dart 2.0 soundness. (Closed)
Patch Set: Add more annotations to the "checks" category Created 3 years, 4 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/front_end/testcases/runtime_checks/dynamic_invocation.dart
diff --git a/pkg/front_end/testcases/runtime_checks/dynamic_invocation.dart b/pkg/front_end/testcases/runtime_checks/dynamic_invocation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..8db38c030daab92113144ac4fa3c90a273d66fb6
--- /dev/null
+++ b/pkg/front_end/testcases/runtime_checks/dynamic_invocation.dart
@@ -0,0 +1,31 @@
+// 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.
+
+/*@testedFeatures=checks*/
+library test;
+
+class C<T> {
+ void f1(T /*@checkFormal=semiSafe*/ x) {}
+ void f2(int x) {}
+}
+
+class D extends C<num> {
+ void f1(covariant int /*@checkFormal=unsafe*/ x) {}
+}
+
+void g1(dynamic d) {
+ d.f1 /*@checkCall=dynamic*/ (1.5);
+}
+
+void g2(dynamic d) {
+ d.f2 /*@checkCall=dynamic*/ (1.5);
+}
+
+void test() {
+ g1(new C<int>());
+ g2(new C());
+ g1(new D());
+}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698