Index: tests/language/new_expression_type_args_test.dart |
diff --git a/tests/language/new_expression_type_args_test.dart b/tests/language/new_expression_type_args_test.dart |
index c454c177abfe728f28d23330765387036aa29135..3f298f420ce07c89968bdc12704a1580d250fafc 100644 |
--- a/tests/language/new_expression_type_args_test.dart |
+++ b/tests/language/new_expression_type_args_test.dart |
@@ -10,7 +10,7 @@ class A<T> { |
// OK when used within instance method, but not in static method. |
m3() => new A<T>(); |
- static m4() => new A<T>(); /// 02: static type warning, dynamic type error |
+ static m4() => new A<T>(); /// 02: static type warning |
} |
main() { |