Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..89538be8f0da92a03ffbed2da8084035ccf3ae47 |
| --- /dev/null |
| +++ b/tests/compiler/dart2js_extra/23264_test.dart |
| @@ -0,0 +1,4 @@ |
| +import 'package:expect/expect.dart'; |
| + |
| +class A { A(ignore); } |
| +main() => Expect.throws(() => A(const [])); // oops, `new` is missing! |
|
Siggi Cherem (dart-lang)
2015/04/21 02:21:19
because of the missing new, we weren't visiting in
|