Index: tests/language/type_parameter_test.dart |
diff --git a/tests/language/type_parameter_test.dart b/tests/language/type_parameter_test.dart |
index e1a03d30a37e19f128b2fe35695d46dc51345152..75ad282c882dc4a19a36f33a10350baa2d3745b0 100644 |
--- a/tests/language/type_parameter_test.dart |
+++ b/tests/language/type_parameter_test.dart |
@@ -17,19 +17,19 @@ class A<T> { |
} |
static |
- T /// 01: static type warning, dynamic type error |
+ T /// 01: static type warning |
staticMethod( |
- T /// 02: static type warning, dynamic type error |
+ T /// 02: static type warning |
a) { |
final |
- T /// 03: static type warning, dynamic type error |
+ T /// 03: static type warning |
a = "not_null"; |
print(a); |
return a; |
} |
static final |
- T /// 04: static type warning, dynamic type error |
+ T /// 04: static type warning |
staticField = "not_null"; |
// Assigning null to a malformed type is not a dynamic error. |