| Index: dart/tests/standalone/src/BlackListedTest.dart
|
| diff --git a/dart/tests/standalone/src/BlackListedTest.dart b/dart/tests/standalone/src/BlackListedTest.dart
|
| index c525cd70f985239af40e59ed7f3b03c635d9bfe8..15d3255cb8b0148bfe6c99e872f7203fdb71ae5e 100644
|
| --- a/dart/tests/standalone/src/BlackListedTest.dart
|
| +++ b/dart/tests/standalone/src/BlackListedTest.dart
|
| @@ -34,5 +34,27 @@ class MyTwoByteString extends TwoByteString {} /// 11: compile-time error
|
| class MyFourByteString extends FourByteString {} /// 12: compile-time error
|
|
|
| main() {
|
| + new MyBool(); /// 01: continued
|
|
|
| -}
|
| + new MyDouble(); /// 02: continued
|
| +
|
| + new MyObjectArray(); /// 03: continued
|
| +
|
| + new MyImmutableArray(); /// 04: continued
|
| +
|
| + new MyGrowableObjectArray(); /// 05: continued
|
| +
|
| + new MyIntegerImplementation(); /// 06: continued
|
| +
|
| + new MySmi(); /// 07: continued
|
| +
|
| + new MyMint(); /// 08: continued
|
| +
|
| + new MyBigint(); /// 09: continued
|
| +
|
| + new MyOneByteString(); /// 10: continued
|
| +
|
| + new MyTwoByteString(); /// 11: continued
|
| +
|
| + new MyFourByteString(); /// 12: continued
|
| +}
|
|
|