| Index: tests/lib/mirrors/circular_factory_redirection_test.dart
|
| diff --git a/tests/lib/mirrors/circular_factory_redirection_test.dart b/tests/lib/mirrors/circular_factory_redirection_test.dart
|
| index b83385450922ead22bca3edadd20382e66f9a3cd..bac6c918283b160a8e08ff1bf31ef2f059ab011e 100644
|
| --- a/tests/lib/mirrors/circular_factory_redirection_test.dart
|
| +++ b/tests/lib/mirrors/circular_factory_redirection_test.dart
|
| @@ -18,14 +18,14 @@ class B implements A {
|
| class C implements B {
|
| const C();
|
| factory C.circular()
|
| - /* /// 01: compile-time error
|
| + /* //# 01: compile-time error
|
| = C;
|
| - */ = A.circular; /// 01: continued
|
| + */ = A.circular; //# 01: continued
|
|
|
| const factory C.circular2()
|
| - /* /// 02: compile-time error
|
| + /* //# 02: compile-time error
|
| = C;
|
| - */ = A.circular2; /// 02: continued
|
| + */ = A.circular2; //# 02: continued
|
| }
|
|
|
| main() {
|
|
|