Index: tests/compiler/dart2js_extra/23264_test.dart |
diff --git a/tests/compiler/dart2js_extra/23264_test.dart b/tests/compiler/dart2js_extra/23264_test.dart |
index 89538be8f0da92a03ffbed2da8084035ccf3ae47..a8344260f3b06ed7919150f028282543765babb0 100644 |
--- a/tests/compiler/dart2js_extra/23264_test.dart |
+++ b/tests/compiler/dart2js_extra/23264_test.dart |
@@ -1,4 +1,7 @@ |
import 'package:expect/expect.dart'; |
-class A { A(ignore); } |
+class A { |
+ A(ignore); |
+} |
+ |
main() => Expect.throws(() => A(const [])); // oops, `new` is missing! |