Index: pkg/front_end/testcases/inference/inferred_type_cascade.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/inferred_type_cascade.dart.strong.expect b/pkg/front_end/testcases/inference/inferred_type_cascade.dart.strong.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c4e65268e9459ccef821ca2e51ffac91c46928e3 |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/inferred_type_cascade.dart.strong.expect |
@@ -0,0 +1,14 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class A extends core::Object { |
+ field core::int a = null; |
+ field core::List<core::int> b = null; |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+ method m() → void {} |
+} |
+static field self::A v = let final self::A #t1 = new self::A::•() in let final dynamic #t2 = #t1.{self::A::a} = 1 in let final dynamic #t3 = #t1.{self::A::b}.{core::List::add}(2) in let final dynamic #t4 = #t1.{self::A::m}() in #t1; |
+static method main() → dynamic {} |