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

Unified Diff: tests/language_strong/mixin_method_test.dart

Issue 2861783002: fix more mixin tests to work in strong mode (Closed)
Patch Set: Created 3 years, 8 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: tests/language_strong/mixin_method_test.dart
diff --git a/tests/language_strong/mixin_method_test.dart b/tests/language_strong/mixin_method_test.dart
index 81bac5e0e48bb9d9070739aeafcc48f14d06ae16..3b62f85a3fe40e8ee40a66b4d682756124ffa42f 100644
--- a/tests/language_strong/mixin_method_test.dart
+++ b/tests/language_strong/mixin_method_test.dart
@@ -28,7 +28,7 @@ class F extends E {
}
main() {
- var c = new C();
+ dynamic c = new C();
Expect.equals("S-foo", c.foo());
Expect.equals("M1-bar", c.bar());
Expect.equals("S-baz", c.baz());
« no previous file with comments | « tests/language_strong/mixin_lib_extends_method_test.dart ('k') | tests/language_strong/mixin_super_bound_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698