| Index: tests/language/src/TypeVariableBoundsTest.dart
|
| diff --git a/tests/language/src/TypeVariableBoundsTest.dart b/tests/language/src/TypeVariableBoundsTest.dart
|
| index 11e912f3224f5a09f43326c794fa522e69ac8db2..0cc71c379680dcc0964984d38813bae657cad8d9 100644
|
| --- a/tests/language/src/TypeVariableBoundsTest.dart
|
| +++ b/tests/language/src/TypeVariableBoundsTest.dart
|
| @@ -19,7 +19,7 @@ interface IFoo<T extends num> default Foo<T extends num> {
|
|
|
| // String is not assignable to num.
|
| class Baz
|
| - extends Foo<String> /// 01: dynamic type error
|
| + extends Foo<String> /// 01: static type error, dynamic type error
|
| {}
|
|
|
| class Biz extends Foo<int> {}
|
| @@ -44,7 +44,7 @@ class Box<T> {
|
|
|
| main() {
|
| // String is not assignable to num.
|
| - var v1 = new Foo<String>(); /// 05: dynamic type error
|
| + var v1 = new Foo<String>(); /// 05: static type error, dynamic type error
|
|
|
| // String is not assignable to num.
|
| Foo<String> v2 = null; /// 06: static type error
|
|
|