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

Unified Diff: tests/language_strong/inferrer_constructor3_test.dart

Issue 2806543002: Issue 29186. Make several top-level variables explicitly 'dynamic'. (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
« no previous file with comments | « tests/corelib_strong/error_stack_trace2_test.dart ('k') | tests/language_strong/language_strong.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/inferrer_constructor3_test.dart
diff --git a/tests/language_strong/inferrer_constructor3_test.dart b/tests/language_strong/inferrer_constructor3_test.dart
index 8afa449c23a9be60539e7d1266909648cc9cd726..f601dec62287d3e7cefd86437d8c7c9e2a180856 100644
--- a/tests/language_strong/inferrer_constructor3_test.dart
+++ b/tests/language_strong/inferrer_constructor3_test.dart
@@ -14,7 +14,7 @@ class A {
A(this.field);
}
-var c = () => new List(42)[0];
+dynamic c = () => new List(42)[0];
main() {
bar();
« no previous file with comments | « tests/corelib_strong/error_stack_trace2_test.dart ('k') | tests/language_strong/language_strong.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698