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..ef077e5e316a20b0ff47df0fa4c90431829b98d9 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 { |
+} |
+ |
+// myother7.dart/Baz depends on SomeClass2 which depends on SomeInterface2 |
+class SomeClass2 implements SomeInterface2 { |
+} |