| Index: tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart
|
| ===================================================================
|
| --- tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart (revision 14690)
|
| +++ tests/compiler/dart2js_native/native_library_same_name_used_lib2.dart (working copy)
|
| @@ -4,8 +4,8 @@
|
|
|
| // Native implementation.
|
|
|
| -#library('lib2');
|
| -#import('native_library_same_name_used_lib1.dart'); // To get interface I.
|
| +library lib2;
|
| +import 'native_library_same_name_used_lib1.dart'; // To get interface I.
|
|
|
| // Native impl has same name as interface.
|
| class Impl implements I native "*I" {
|
|
|