| Index: tests/language_strong/first_class_types_constants_test.dart
|
| diff --git a/tests/language_strong/first_class_types_constants_test.dart b/tests/language_strong/first_class_types_constants_test.dart
|
| index 5dfa13620dd1fbda7770a33fba79d8cb1b6a3be0..f0447f76ab46c6b9c1568ac3f341c0614d7a0633 100644
|
| --- a/tests/language_strong/first_class_types_constants_test.dart
|
| +++ b/tests/language_strong/first_class_types_constants_test.dart
|
| @@ -12,9 +12,9 @@ class C<T> {
|
| typedef int Fun(bool, String);
|
|
|
| const c0 = C;
|
| -const c1 = const C(C);
|
| +const c1 = const C<Type>(C);
|
| const c2 = Fun;
|
| -const c3 = const C(Fun);
|
| +const c3 = const C<Type>(Fun);
|
|
|
| main() {
|
| Expect.identical(C, C);
|
|
|