| Index: tests/compiler/dart2js_extra/21666_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/21666_test.dart b/tests/compiler/dart2js_extra/21666_test.dart
|
| index ceb147a3c4bc26d26dad42c63d36904f0d6c7da4..857b0e34cb2fc467c3934304f8cf9661f79bae99 100644
|
| --- a/tests/compiler/dart2js_extra/21666_test.dart
|
| +++ b/tests/compiler/dart2js_extra/21666_test.dart
|
| @@ -2,7 +2,6 @@
|
| // 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.
|
|
|
| -
|
| // Regression test for issue 21666 - problems with method that has super calls.
|
| //
|
| // Use a method and getter with super calls in various ways.
|
| @@ -12,8 +11,13 @@ import 'package:expect/expect.dart';
|
| @MirrorsUsed(targets: const [A, B, Object])
|
| import 'dart:mirrors';
|
|
|
| -class X { const X(); }
|
| -class Y { const Y(); }
|
| +class X {
|
| + const X();
|
| +}
|
| +
|
| +class Y {
|
| + const Y();
|
| +}
|
|
|
| typedef fInt(int x);
|
| typedef fString(String x);
|
|
|