| Index: dart/tests/language/syntax_test.dart
|
| diff --git a/dart/tests/language/syntax_test.dart b/dart/tests/language/syntax_test.dart
|
| index 6c6821c2d56aa170e8470519c19b5613c21e39ac..462bdbd4f210e61cbf94f6af287079686ff7d43d 100644
|
| --- a/dart/tests/language/syntax_test.dart
|
| +++ b/dart/tests/language/syntax_test.dart
|
| @@ -233,6 +233,10 @@ main() {
|
|
|
| new Bad();
|
|
|
| + 1 + 2 = 1; /// 63: compile-time error
|
| + new SyntaxTest() = 1; /// 64: compile-time error
|
| + futureOf(null) = 1; /// 65: compile-time error
|
| +
|
| } catch (ex) {
|
| // Swallowing exceptions. Any error should be a compile-time error
|
| // which kills the current isolate.
|
|
|