| Index: tests/language/number_identifier_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/invalid_length_negative_test.dart b/tests/language/number_identifier_test.dart
|
| similarity index 74%
|
| copy from tests/compiler/dart2js_extra/invalid_length_negative_test.dart
|
| copy to tests/language/number_identifier_test.dart
|
| index 983665364128afd7e7fcccff2c53219a7a0ff7bb..b66f5388d7a453c60c660e285c939d8b5acf9a94 100644
|
| --- a/tests/compiler/dart2js_extra/invalid_length_negative_test.dart
|
| +++ b/tests/language/number_identifier_test.dart
|
| @@ -3,5 +3,6 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| main() {
|
| - new List("foo");
|
| + 1is int; /// 01: compile-time error
|
| + 1as int; /// 02: compile-time error
|
| }
|
|
|