| Index: tests/language/duplicate_import_liba.dart
|
| diff --git a/sdk/lib/coreimpl/coreimpl.dart b/tests/language/duplicate_import_liba.dart
|
| similarity index 72%
|
| copy from sdk/lib/coreimpl/coreimpl.dart
|
| copy to tests/language/duplicate_import_liba.dart
|
| index 067ea2fe3dd668ef47b4c870d1569db4c8a0cbf7..b8af1a7da6842538fc68e1582dd8a51a45acfce2 100644
|
| --- a/sdk/lib/coreimpl/coreimpl.dart
|
| +++ b/tests/language/duplicate_import_liba.dart
|
| @@ -2,8 +2,12 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library("dart:coreimpl");
|
| +library liba;
|
|
|
| -#import("dart:collection");
|
| +var field;
|
|
|
| -#source("regexp.dart");
|
| +void method() {}
|
| +
|
| +class Class {}
|
| +
|
| +void methodOrClass() {}
|
|
|