| Index: tests/language/class_cycle_test.dart
|
| diff --git a/tests/language/class_cycle_test.dart b/tests/language/class_cycle_test.dart
|
| index 4c8a3827df5b7818795787c8894e11dc4ab9c66e..472aeefb20dfd451035f69869bbe79d78238b399 100644
|
| --- a/tests/language/class_cycle_test.dart
|
| +++ b/tests/language/class_cycle_test.dart
|
| @@ -12,19 +12,19 @@ class C {
|
| }
|
|
|
| class Bar
|
| - extends Foo /// 00: compile-time error
|
| - implements Foo /// 01: compile-time error
|
| + extends Foo //# 00: compile-time error
|
| + implements Foo //# 01: compile-time error
|
| {
|
| }
|
|
|
| class ImplementsC implements C
|
| -, C /// 02: compile-time error
|
| +, C //# 02: compile-time error
|
| {}
|
|
|
| // Spec says: It is a compile-time error if the superclass
|
| // of a class C appears in the implements clause of C.
|
| class ExtendsC extends C
|
| -implements C /// 03: compile-time error
|
| +implements C //# 03: compile-time error
|
| {}
|
|
|
| main() {
|
|
|