Index: tests/language/const_factory_with_body_test.dart |
diff --git a/tests/language/const_factory_with_body_test.dart b/tests/language/const_factory_with_body_test.dart |
index e7830d6d9de9be2e147e0e8609c4bfc022a7e392..dea62482ad5276c9d7d6749f7388ac6d6a24b35b 100644 |
--- a/tests/language/const_factory_with_body_test.dart |
+++ b/tests/language/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 |
} |