Index: pkg/front_end/testcases/inference/super_initializer.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/super_initializer.dart.strong.expect b/pkg/front_end/testcases/inference/super_initializer.dart.strong.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e36e82dab0a09d77ede2d316c593a3f102d29b3c |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/super_initializer.dart.strong.expect |
@@ -0,0 +1,17 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class C extends self::B { |
+ constructor •() → void |
+ : super self::B::•(self::f<core::int>()) |
+ ; |
+} |
+class B extends core::Object { |
+ constructor •(core::int x) → void |
+ : super core::Object::•() |
+ ; |
+} |
+static method f<T extends core::Object>() → self::f::T |
+ return null; |
+static method main() → dynamic {} |