| Index: tests/compiler/dart2js/kernel/closed_world2_test.dart
|
| diff --git a/tests/compiler/dart2js/kernel/closed_world2_test.dart b/tests/compiler/dart2js/kernel/closed_world2_test.dart
|
| index c8aec985e893337239f15c2e3dd1b6f7c871ec3b..9484484344f4bd81a4c25fb848e638a74283abfc 100644
|
| --- a/tests/compiler/dart2js/kernel/closed_world2_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/closed_world2_test.dart
|
| @@ -56,6 +56,7 @@ import 'impact_test.dart';
|
| const SOURCE = const {
|
| 'main.dart': '''
|
| import 'dart:html';
|
| +import 'dart:typed_data';
|
| import 'package:expect/expect.dart';
|
|
|
| class ClassWithSetter {
|
| @@ -86,6 +87,7 @@ main() {
|
| null is List<int>;
|
| method1(); // Both top level and instance method named 'method1' are live.
|
| #main; // Use a const symbol.
|
| + new Int8List(0);
|
| }
|
| '''
|
| };
|
|
|