| Index: tests/language/null_test.dart
|
| diff --git a/tests/language/null_test.dart b/tests/language/null_test.dart
|
| index b094d51f5362cc2bee7eca29b8d1166666264ab0..06debc054e6dbdacf74dac6c58255344c495a8de 100644
|
| --- a/tests/language/null_test.dart
|
| +++ b/tests/language/null_test.dart
|
| @@ -9,9 +9,9 @@ import "dart:mirrors";
|
| import "package:expect/expect.dart";
|
|
|
| class BadInherit
|
| - extends Null // /// 01: compile-time error
|
| - implements Null // /// 02: compile-time error
|
| - extends Object with Null // /// 03: compile-time error
|
| + extends Null // //# 01: compile-time error
|
| + implements Null // //# 02: compile-time error
|
| + extends Object with Null // //# 03: compile-time error
|
| {}
|
|
|
| class EqualsNotCalled {
|
|
|