| Index: tests/language/malformed_bound_test.dart
|
| diff --git a/tests/language/malformed_bound_test.dart b/tests/language/malformed_bound_test.dart
|
| index 7141cf2daa3372e28bde85af4e8a97fb1f30e6fd..061c3b9453c829d4ee83da1c7dc55ee51e198ed8 100644
|
| --- a/tests/language/malformed_bound_test.dart
|
| +++ b/tests/language/malformed_bound_test.dart
|
| @@ -7,11 +7,11 @@
|
| class C<T
|
| extends Malformed /// 01: static type warning, runtime error
|
| > {
|
| - f(T t) => t.foo;
|
| + f(T t) => t.foo; /// 01: continued
|
| }
|
|
|
| main() {
|
| new C<int>()
|
| - .f(1) /// 01: continued
|
| + .f(1) /// 01: continued
|
| ;
|
| }
|
|
|