Index: tests/language/src/ClassExtendsNegativeTest.dart |
diff --git a/tests/language/src/ClassExtendsNegativeTest.dart b/tests/language/src/ClassExtendsNegativeTest.dart |
deleted file mode 100644 |
index f3eb7bf861e9979073b3c319c1bd5485255682e2..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ClassExtendsNegativeTest.dart |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// 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. |
-// Check fails because class extends from interface. |
- |
-interface InterfaceA { |
- |
-} |
- |
-class ClassA extends InterfaceA { |
- |
-} |
- |
-class ClassExtendsNegativeTest { |
- static testMain() { |
- } |
-} |
- |
-main() { |
- ClassExtendsNegativeTest.testMain(); |
-} |