| Index: tests/language/regress_27617_test.dart
|
| diff --git a/tests/language/regress_27617_test.dart b/tests/language/regress_27617_test.dart
|
| index 960d987b73cc10e3b1d787ac1073f933f792d5f0..c5f6c637b2773547088f32f2a5feda0e6d010ba5 100644
|
| --- a/tests/language/regress_27617_test.dart
|
| +++ b/tests/language/regress_27617_test.dart
|
| @@ -2,9 +2,10 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +
|
| class Foo {
|
| final String greeting;
|
| - Foo._(this.greeting) {}
|
| + Foo._(this.greeting) { }
|
|
|
| // Const constructor must not redirect to non-const constructor.
|
| const Foo.hi() : this._('hi'); // //# 1: compile-time error
|
|
|