Chromium Code Reviews| Index: tests/language/src/TypeVariableBoundsTest.dart |
| =================================================================== |
| --- tests/language/src/TypeVariableBoundsTest.dart (revision 4804) |
| +++ tests/language/src/TypeVariableBoundsTest.dart (working copy) |
| @@ -66,8 +66,8 @@ |
| new Box<Object, Object>(); /// 08: compile-time error |
| // Fisk does not exist. |
| - Box<Fisk> box = null; /// 09: static type error |
| + Box<Fisk> box = null; /// 09: dynamic type error |
|
srdjan
2012/03/01 19:05:02
Check dartc, they may require a static type error
regis
2012/03/01 19:54:25
Apparently not. I guess a dynamic type error impli
|
| // Too many type arguments. |
| - Box<Object, Object> box = null; /// 10: static type error |
| + Box<Object, Object> box = null; /// 10: dynamic type error |
| } |