| Index: tests/language_strong/redirecting_factory_infinite_steps_test.dart
|
| diff --git a/tests/language_strong/redirecting_factory_infinite_steps_test.dart b/tests/language_strong/redirecting_factory_infinite_steps_test.dart
|
| index e6550801e57f55984c16f6c472d369a8890933a5..cc22535d92cf20469a3feb53a4711599e283ede1 100644
|
| --- a/tests/language_strong/redirecting_factory_infinite_steps_test.dart
|
| +++ b/tests/language_strong/redirecting_factory_infinite_steps_test.dart
|
| @@ -13,11 +13,11 @@
|
| // indirectly via a sequence of redirections."
|
|
|
| class Foo extends Bar {
|
| - factory Foo() = Bar; /// 01: static type warning, dynamic type error
|
| + factory Foo() = Bar; //# 01: static type warning, dynamic type error
|
| }
|
|
|
| class Bar {
|
| - factory Bar() = Foo; /// 02: compile-time error
|
| + factory Bar() = Foo; //# 02: compile-time error
|
| }
|
|
|
| main() {
|
|
|