| Index: tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart
|
| diff --git a/tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart b/tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart
|
| index 9ea0f421fe1a2c6ab6c1a062e3bf9758ff0f6a1a..c75ec0fc230ed5f3fc8d34a0e80f4d8f5a803b35 100644
|
| --- a/tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart
|
| +++ b/tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart
|
| @@ -5,12 +5,13 @@
|
| // Native implementation.
|
|
|
| library lib2;
|
| -import 'native_library_same_name_used_lib1.dart'; // To get abstract class I.
|
| +
|
| +import 'native_library_same_name_used_lib1.dart'; // To get abstract class I.
|
| import 'dart:_js_helper';
|
|
|
| // Native impl has same name as abstract class.
|
| @Native("I")
|
| class Impl implements I {
|
| - Impl read() native;
|
| - write(Impl x) native;
|
| + Impl read() native ;
|
| + write(Impl x) native ;
|
| }
|
|
|