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

Unified Diff: pkg/front_end/testcases/inference/infer_statics_transitively.dart

Issue 2936043002: Chase imports in analyzer's front_end_inference_test. (Closed)
Patch Set: Created 3 years, 6 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/inference/infer_statics_transitively.dart
diff --git a/pkg/front_end/testcases/inference/infer_statics_transitively.dart b/pkg/front_end/testcases/inference/infer_statics_transitively.dart
index b371969322e4d4875aab04c906c2b9541441a657..aa06cbbf77b9396645e0fbc295c5a20dc1bdc884 100644
--- a/pkg/front_end/testcases/inference/infer_statics_transitively.dart
+++ b/pkg/front_end/testcases/inference/infer_statics_transitively.dart
@@ -7,10 +7,12 @@ library test;
import 'infer_statics_transitively_a.dart';
-final /*@topType=dynamic*/ m1 = a1;
-final /*@topType=dynamic*/ m2 = A.a2;
+final /*@topType=int*/ m1 = a1;
+final /*@topType=int*/ m2 = A.a2;
foo() {
int i;
i = m1;
}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698