Index: tests/language/regress_27617_test.dart |
diff --git a/tests/language/regress_27617_test.dart b/tests/language/regress_27617_test.dart |
index c5f6c637b2773547088f32f2a5feda0e6d010ba5..960d987b73cc10e3b1d787ac1073f933f792d5f0 100644 |
--- a/tests/language/regress_27617_test.dart |
+++ b/tests/language/regress_27617_test.dart |
@@ -2,10 +2,9 @@ |
// 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 |