| Index: tests/language/body_less_constructor_wrong_arg_negative_test.dart
|
| diff --git a/tests/language/body_less_constructor_wrong_arg_negative_test.dart b/tests/language/body_less_constructor_wrong_arg_negative_test.dart
|
| deleted file mode 100644
|
| index f0becab169fd745bf8ac3be7708f2acbeac8a79c..0000000000000000000000000000000000000000
|
| --- a/tests/language/body_less_constructor_wrong_arg_negative_test.dart
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// 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.
|
| -
|
| -main() {
|
| - C o = const C(1);
|
| -}
|
| -
|
| -class Base {
|
| - final String name;
|
| - const Base(this.name);
|
| -}
|
| -
|
| -class C extends Base {
|
| - const C(var x) : super(); // call super constructor with wrong argument count.
|
| -}
|
|
|