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

Unified Diff: tests/corelib_strong/error_stack_trace2_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/corelib_strong.status ('k') | tests/language_strong/inferrer_constructor3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib_strong/error_stack_trace2_test.dart
diff --git a/tests/corelib_strong/error_stack_trace2_test.dart b/tests/corelib_strong/error_stack_trace2_test.dart
index e430b84fa095f002ec86fc513592a6ddb1819c1d..ebffd57476318602eed57f3d29902fbb1929c9d1 100644
--- a/tests/corelib_strong/error_stack_trace2_test.dart
+++ b/tests/corelib_strong/error_stack_trace2_test.dart
@@ -9,7 +9,7 @@ class A {
}
var a = new A();
-var cyclicStatic = (() => a.foo + 1)();
+dynamic cyclicStatic = (() => a.foo + 1)();
cyclicInitialization() {
return cyclicStatic;
« no previous file with comments | « tests/corelib_strong/corelib_strong.status ('k') | tests/language_strong/inferrer_constructor3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698