| Index: tests/compiler/dart2js_foreign/native_exceptions1_test.dart
|
| diff --git a/tests/compiler/dart2js_foreign/native_exceptions1_test.dart b/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
|
| index 0368c5842a857f9f726b18a04e4b2ce5b5e0f0dd..bfd945d05d497777e3beafc372f552c53d01b6a2 100644
|
| --- a/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
|
| +++ b/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
|
| @@ -16,7 +16,7 @@
|
|
|
| // The exception type.
|
| @native("*E")
|
| -class E {
|
| +class E {
|
| @native E._used(); // Bogus native constructor, called only from fake body.
|
|
|
| final int code;
|
| @@ -24,7 +24,7 @@ class E {
|
|
|
| // Type with exception-throwing methods.
|
| @native("*A")
|
| -class A {
|
| +class A {
|
| @native op(int x) {
|
| // Fake body calls constructor to mark the exception class (E) as used.
|
| throw new E._used();
|
|
|