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

Side by Side Diff: pkg/front_end/testcases/inference/downwards_inference_inside_top_level_2.dart.strong.expect

Issue 2954063002: Small fixes to top level type inference. (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 unified diff | Download patch
OLDNEW
1 library test; 1 library test;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 class A<T extends core::Object> extends core::Object { 5 class A<T extends core::Object> extends core::Object {
6 constructor •(self::A::T x) → void 6 constructor •(self::A::T x) → void
7 : super core::Object::•() 7 : super core::Object::•()
8 ; 8 ;
9 } 9 }
10 static field core::List<self::A<core::int>> t1 = <self::A<core::int>>[new self:: A::•<core::int>(1)]; 10 static field core::List<self::A<core::int>> t1 = <self::A<core::int>>[new self:: A::•<core::int>(1)];
11 static field core::List<self::A<dynamic>> t2 = <self::A<dynamic>>[new self::A::• <dynamic>(2)];
12 static method main() → dynamic {} 11 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698