Index: tests/language/src/ExtendTypeParameterNegativeTest.dart |
diff --git a/tests/language/src/ExtendTypeParameterNegativeTest.dart b/tests/language/src/ExtendTypeParameterNegativeTest.dart |
deleted file mode 100644 |
index 197447e62eaff533ffb3ba1139255084cab27738..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ExtendTypeParameterNegativeTest.dart |
+++ /dev/null |
@@ -1,11 +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. |
- |
-class A<T> extends T { } |
- |
-main() { |
- A a = new A(); |
-} |