| Index: compiler/javatests/com/google/dart/compiler/end2end/inc/some.intfchange.dart
|
| diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/some.intfchange.dart b/compiler/javatests/com/google/dart/compiler/end2end/inc/some.intfchange.dart
|
| index cbc856c0997dfadf2b2fcfd1d4832affbedb2be6..b36d78d1191b18b7fd95457e57d4772b1a423f12 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/end2end/inc/some.intfchange.dart
|
| +++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/some.intfchange.dart
|
| @@ -6,3 +6,10 @@ interface SomeClass factory SomeClassImpl {
|
| SomeClass();
|
| String get message(); // Added return type
|
| }
|
| +
|
| +interface SomeInterface2 {
|
| +}
|
| +
|
| +// my.dart/Baz depends on SomeClass2 depends on SomeInterface2
|
| +class SomeClass2 implements SomeInterface2 {
|
| +}
|
|
|