| Index: tests/language/factory_redirection3_cyclic_test.dart
|
| diff --git a/tests/language/factory_redirection3_cyclic_test.dart b/tests/language/factory_redirection3_cyclic_test.dart
|
| index 46629118fa41a25a21b073c57c625b193eaa7a61..acd564e166f5067b7c1cafe67d45256296605d04 100644
|
| --- a/tests/language/factory_redirection3_cyclic_test.dart
|
| +++ b/tests/language/factory_redirection3_cyclic_test.dart
|
| @@ -15,7 +15,7 @@ class B implements A {
|
| class C implements B {
|
| factory C.bar() = C.foo;
|
| factory C.foo() = C
|
| - .bar /// 01: compile-time error
|
| + .bar //# 01: compile-time error
|
| ;
|
| C();
|
| }
|
|
|