Chromium Code Reviews| Index: tests/compiler/dart2js_extra/4740_int_library.dart |
| diff --git a/tests/compiler/dart2js_extra/regress/4740_library.dart b/tests/compiler/dart2js_extra/4740_int_library.dart |
| similarity index 64% |
| copy from tests/compiler/dart2js_extra/regress/4740_library.dart |
| copy to tests/compiler/dart2js_extra/4740_int_library.dart |
| index fd51e977bfed4d5d1d682e46da3b72af4e5056a3..49e731de273f31fb3654d8f3f8b8778e8863fde6 100644 |
| --- a/tests/compiler/dart2js_extra/regress/4740_library.dart |
| +++ b/tests/compiler/dart2js_extra/4740_int_library.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('4740_library'); |
| +#library('4740_int_library'); |
| -class Foo { |
| +class Foo implements FooInterface { |
| Foo._internal(); |
| } |
| + |
| +interface FooInterface default Foo { |
| + FooInterface._internal(); |
|
kasperl
2012/09/19 05:59:17
That's a whole lot of indentation.
|
| +} |