Index: tests/language/type_parameter_test.dart |
diff --git a/tests/language/type_parameter_test.dart b/tests/language/type_parameter_test.dart |
index 9d2c9dc2fc049e3750f85c35edac70c84356a361..0690564db0247dc63de1a8225cbc0c4fa7957202 100644 |
--- a/tests/language/type_parameter_test.dart |
+++ b/tests/language/type_parameter_test.dart |
@@ -15,18 +15,18 @@ class A<T> { |
} |
static |
- T /// 01: static type warning, dynamic type error |
+ T /// 01: compile-time error |
staticMethod( |
- T /// 02: static type warning, dynamic type error |
+ T /// 02: compile-time error |
a) { |
final |
- T /// 03: static type warning, dynamic type error |
+ T /// 03: compile-time error |
a = null; |
print(a); |
} |
static final |
- T /// 04: static type warning, dynamic type error |
+ T /// 04: compile-time error |
staticField = null; |
} |