| Index: tests/language/type_variable_bounds_test.dart
|
| diff --git a/tests/language/type_variable_bounds_test.dart b/tests/language/type_variable_bounds_test.dart
|
| index 30bf61c1fa2308cd7dd72156c1d620b2b759eed7..612edb27f394927217e06682d8058e0ae79a4f69 100644
|
| --- a/tests/language/type_variable_bounds_test.dart
|
| +++ b/tests/language/type_variable_bounds_test.dart
|
| @@ -61,10 +61,10 @@ main() {
|
| new Box<String>().makeFoo();
|
|
|
| // Fisk does not exist.
|
| - new Box<Fisk>(); /// 07: static type warning, dynamic type error
|
| + new Box<Fisk>(); /// 07: static type warning
|
|
|
| // Too many type arguments.
|
| - new Box<Object, Object>(); /// 08: compile-time error
|
| + new Box<Object, Object>(); /// 08: static type warning
|
|
|
| // Fisk does not exist.
|
| Box<Fisk> box = null; /// 09: static type warning
|
|
|