Index: pkg/front_end/testcases/inference/downwards_inference_annotations_class_members.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/downwards_inference_annotations_class_members.dart.strong.expect b/pkg/front_end/testcases/inference/downwards_inference_annotations_class_members.dart.strong.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..32a28d496ea616fc11a56bc7d75dc1da29d23694 |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/downwards_inference_annotations_class_members.dart.strong.expect |
@@ -0,0 +1,20 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class Foo extends core::Object { |
+ const constructor •(core::List<core::String> l) → void |
+ : super core::Object::•() |
+ ; |
+} |
+abstract class Bar extends core::Object { |
+ @self::Foo::•(const <core::String>[]) |
+ field dynamic x = null; |
+ @self::Foo::•(const <core::String>[]) |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+ @self::Foo::•(const <core::String>[]) |
+ abstract method f() → void; |
+} |
+static method main() → dynamic {} |