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

Unified Diff: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.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
« no previous file with comments | « pkg/front_end/testcases/inference/infer_statics_transitively_a.dart.strong.expect ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
index f41d138d13255b947ba2500127f84042f73e858a..49235aa483797006d5b3b1e17bca67aece5dabfb 100644
--- a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
+++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
@@ -27,8 +27,10 @@ class B<E> extends A<E> implements M {
foo() {
int y = /*error:INVALID_ASSIGNMENT*/ new B<String>()
. /*@target=B::m*/ m(null, null)
- .value;
- String z = new B<String>(). /*@target=B::m*/ m(null, null).value;
+ . /*@target=A::value*/ value;
+ String z = new B<String>()
+ . /*@target=B::m*/ m(null, null)
+ . /*@target=A::value*/ value;
}
main() {}
« no previous file with comments | « pkg/front_end/testcases/inference/infer_statics_transitively_a.dart.strong.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698