Index: tests/language/src/ExtendTypeParameter2NegativeTest.dart |
diff --git a/tests/language/src/ExtendTypeParameter2NegativeTest.dart b/tests/language/src/ExtendTypeParameter2NegativeTest.dart |
deleted file mode 100644 |
index b976ff8a2c6f41c7f17fb11b154c28ce8fdb6e34..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ExtendTypeParameter2NegativeTest.dart |
+++ /dev/null |
@@ -1,13 +0,0 @@ |
-// Copyright (c) 2012, 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. |
- |
-// Extending a type parameter is not allowed. |
- |
-interface A<T> extends T default B { } |
- |
-class B { } |
- |
-main() { |
- A a = new A(); |
-} |