| Index: tests/language_2/generic_constructor_mixin3_test.dart
|
| diff --git a/tests/language_strong/generic_constructor_mixin3_test.dart b/tests/language_2/generic_constructor_mixin3_test.dart
|
| similarity index 82%
|
| rename from tests/language_strong/generic_constructor_mixin3_test.dart
|
| rename to tests/language_2/generic_constructor_mixin3_test.dart
|
| index be43bd3d7fa0ba6ed393e8878c23ff8371f85e6d..b0bb53647720dee7ac746f82ef4f08bce3f07200 100644
|
| --- a/tests/language_strong/generic_constructor_mixin3_test.dart
|
| +++ b/tests/language_2/generic_constructor_mixin3_test.dart
|
| @@ -5,7 +5,7 @@
|
| // Test that parameter types types are checked correctly in the face of
|
| // mixin application upon a generic constructor.
|
|
|
| -import 'checked_mode_helper.dart';
|
| +import 'dynamic_type_helper.dart';
|
|
|
| class A<X> {
|
| A(X x);
|
| @@ -19,5 +19,5 @@ class C2 = A<String> with B;
|
| void main() {
|
| var v = 0;
|
| checkNoDynamicTypeError(() => new C1(v));
|
| - checkDynamicTypeError(() => new C2(v));
|
| + checkDynamicTypeError(() => new C2(v)); //# 01: compile-time error
|
| }
|
|
|