| Index: tests/language/regress_27617_test.dart
|
| diff --git a/tests/language/regress_27617_test.dart b/tests/language/regress_27617_test.dart
|
| index 9a0fdbd9f9f21787e347ba48b45b2c431269884b..7d3ed4c5a51f3a12e6322c52915f7b4fe8a688e8 100644
|
| --- a/tests/language/regress_27617_test.dart
|
| +++ b/tests/language/regress_27617_test.dart
|
| @@ -8,9 +8,9 @@ class Foo {
|
| Foo._(this.greeting) { }
|
|
|
| // Const constructor must not redirect to non-const constructor.
|
| - const Foo.hi() : this._('hi'); /// 1: compile-time error
|
| + const Foo.hi() : this._('hi'); //# 1: compile-time error
|
| }
|
|
|
| main() {
|
| - const h = const Foo.hi(); /// 1: continued
|
| + const h = const Foo.hi(); //# 1: continued
|
| }
|
|
|