| Index: tests/language_strong/const_factory_with_body_test.dart
|
| diff --git a/tests/language_strong/const_factory_with_body_test.dart b/tests/language_strong/const_factory_with_body_test.dart
|
| index e7830d6d9de9be2e147e0e8609c4bfc022a7e392..4b2a7fb42971c191150cbb8ad971fefc23a92c60 100644
|
| --- a/tests/language_strong/const_factory_with_body_test.dart
|
| +++ b/tests/language_strong/const_factory_with_body_test.dart
|
| @@ -5,9 +5,9 @@
|
| // Tests that a "const factory" with body produces a compile-time error.
|
|
|
| class ConstFactoryWithBody {
|
| - const factory ConstFactoryWithBody.one() { } /// 01: compile-time error
|
| + const factory ConstFactoryWithBody.one() { } //# 01: compile-time error
|
| }
|
|
|
| main() {
|
| - const ConstFactoryWithBody.one(); /// 01: continued
|
| + const ConstFactoryWithBody.one(); //# 01: continued
|
| }
|
|
|