Index: pkg/analyzer_cli/test/data/errors_reported_once/foo.dart |
diff --git a/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart b/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..dc6186d75b6b982951b94a08c696939b74d09f0b |
--- /dev/null |
+++ b/pkg/analyzer_cli/test/data/errors_reported_once/foo.dart |
@@ -0,0 +1,11 @@ |
+library foo; |
+ |
+import 'bar.dart'; |
+ |
+part 'foo_part.dart'; |
+ |
+void main() { |
+ print('foo'); |
+ foo_part(); |
+ bar(); |
+} |