Index: pkg/front_end/testcases/inference/downwards_inference_annotations_typedef.dart |
diff --git a/pkg/front_end/testcases/inference/downwards_inference_annotations.dart b/pkg/front_end/testcases/inference/downwards_inference_annotations_typedef.dart |
similarity index 76% |
copy from pkg/front_end/testcases/inference/downwards_inference_annotations.dart |
copy to pkg/front_end/testcases/inference/downwards_inference_annotations_typedef.dart |
index fd31916c8fdba60cc4e6fb865ba35525d4a952b5..6158bc5029ff6af09a7cd08b04dd1679369912d9 100644 |
--- a/pkg/front_end/testcases/inference/downwards_inference_annotations.dart |
+++ b/pkg/front_end/testcases/inference/downwards_inference_annotations_typedef.dart |
@@ -7,11 +7,9 @@ library test; |
class Foo { |
const Foo(List<String> l); |
- const Foo.named(List<String> l); |
} |
@Foo(/*@typeArgs=String*/ const []) |
-class Bar {} |
+typedef void F(); |
-@Foo.named(/*@typeArgs=String*/ const []) |
-class Baz {} |
+main() {} |