Index: tests/language_2/type_variable_static_context_test.dart |
diff --git a/tests/language_strong/type_variable_static_context_negative_test.dart b/tests/language_2/type_variable_static_context_test.dart |
similarity index 75% |
rename from tests/language_strong/type_variable_static_context_negative_test.dart |
rename to tests/language_2/type_variable_static_context_test.dart |
index 6e9688d7425193ccfe2a305f0ca261be63298282..e0cd2bc2902a17abedc9a8193781b8a2546bc31b 100644 |
--- a/tests/language_strong/type_variable_static_context_negative_test.dart |
+++ b/tests/language_2/type_variable_static_context_test.dart |
@@ -6,8 +6,9 @@ |
class A<T> { |
static int method() { |
+ // error, can't reference a type variable in a static context |
var foo = |
- new T(); // error, can't reference a type variable in a static context |
+ new T(); /*@compile-error=unspecified*/ |
} |
} |