| Index: tests/language/class_cycle_test.dart
|
| diff --git a/tests/language/class_cycle_test.dart b/tests/language/class_cycle_test.dart
|
| index dbc11a0d6af29414c9d9ed5eceebcbf4ac833f33..8b58e2bb9e1239facea8c5592ed3a26bc393cd06 100644
|
| --- a/tests/language/class_cycle_test.dart
|
| +++ b/tests/language/class_cycle_test.dart
|
| @@ -5,14 +5,17 @@
|
|
|
| import "package:expect/expect.dart";
|
|
|
| -class Foo implements Bar {}
|
| +class Foo implements Bar {
|
| +}
|
|
|
| -class C {}
|
| +class C {
|
| +}
|
|
|
| class Bar
|
| extends Foo // //# 00: compile-time error
|
| implements Foo // //# 01: compile-time error
|
| -{}
|
| +{
|
| +}
|
|
|
| class ImplementsC implements C
|
| , C // //# 02: compile-time error
|
| @@ -29,3 +32,4 @@ main() {
|
| Expect.isTrue(new ImplementsC() is C);
|
| Expect.isTrue(new ExtendsC() is C);
|
| }
|
| +
|
|
|