Index: tests/compiler/dart2js_native/native_class_is_check3_frog_test.dart |
diff --git a/tests/compiler/dart2js_native/native_class_is_check3_frog_test.dart b/tests/compiler/dart2js_native/native_class_is_check3_frog_test.dart |
index 0a36764605ee90bdb193c0d447e3dd8ac3ebbe18..490e820a3a3e3ca8f1120c1416c752433dc76d7e 100644 |
--- a/tests/compiler/dart2js_native/native_class_is_check3_frog_test.dart |
+++ b/tests/compiler/dart2js_native/native_class_is_check3_frog_test.dart |
@@ -6,10 +6,10 @@ import "package:expect/expect.dart"; |
// Test for correct simple is-checks on hidden native classes. |
-interface J { |
+abstract class J { |
} |
-interface I extends J { |
+abstract class I extends J { |
I read(); |
write(I x); |
} |