| Index: tests/language_strong/mixin_invalid_bound_test.dart
|
| diff --git a/tests/language_strong/mixin_invalid_bound_test.dart b/tests/language_strong/mixin_invalid_bound_test.dart
|
| index 7e76d440bdf141e617082cd5d94de1fa3a464a27..f0288e949f503a0eb01dd2410153eb3d36047867 100644
|
| --- a/tests/language_strong/mixin_invalid_bound_test.dart
|
| +++ b/tests/language_strong/mixin_invalid_bound_test.dart
|
| @@ -22,14 +22,14 @@ class D<T> extends S<T> with M<bool> { }
|
| class E<T> extends S<bool> with M<T> { }
|
|
|
| main() {
|
| - new A<int>(); /// 01: static type warning
|
| - new A<bool>(); /// 02: static type warning, dynamic type error
|
| - new B<int>(); /// 03: static type warning
|
| - new B<bool>(); /// 04: static type warning, dynamic type error
|
| - new C<int>(); /// 05: static type warning
|
| - new C<bool>(); /// 06: static type warning, dynamic type error
|
| - new D<int>(); /// 07: static type warning, dynamic type error
|
| - new D<bool>(); /// 08: static type warning, dynamic type error
|
| - new E<int>(); /// 09: static type warning, dynamic type error
|
| - new E<bool>(); /// 10: static type warning, dynamic type error
|
| + new A<int>(); // /// 01: static type warning
|
| + new A<bool>(); // /// 02: static type warning, dynamic type error
|
| + new B<int>(); // /// 03: static type warning
|
| + new B<bool>(); // /// 04: static type warning, dynamic type error
|
| + new C<int>(); // /// 05: static type warning
|
| + new C<bool>(); // /// 06: static type warning, dynamic type error
|
| + new D<int>(); // /// 07: static type warning, dynamic type error
|
| + new D<bool>(); // /// 08: static type warning, dynamic type error
|
| + new E<int>(); // /// 09: static type warning, dynamic type error
|
| + new E<bool>(); // /// 10: static type warning, dynamic type error
|
| }
|
|
|