| Index: tests/language/regress_10996_lib.dart
|
| diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/some.prefixable.lib.dart b/tests/language/regress_10996_lib.dart
|
| similarity index 75%
|
| copy from compiler/javatests/com/google/dart/compiler/end2end/inc/some.prefixable.lib.dart
|
| copy to tests/language/regress_10996_lib.dart
|
| index be5059a81b9d0fc9e950b5dc2f474c5dcbb57e8d..77071a2e89c8c4f606a72eb9581bee3ca67f4a37 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/end2end/inc/some.prefixable.lib.dart
|
| +++ b/tests/language/regress_10996_lib.dart
|
| @@ -2,8 +2,9 @@
|
| // 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 some_lib;
|
| +library regress_10996_lib;
|
|
|
| -class Prefix {
|
| - static final int foo = 42;
|
| -}
|
| +var a = 3;
|
| +var b = 4;
|
| +var c = 5;
|
| +var d = 6;
|
|
|