Index: tests/language/src/BodyLessConstructorWrongArgNegativeTest.dart |
diff --git a/tests/language/src/BodyLessConstructorWrongArgNegativeTest.dart b/tests/language/src/BodyLessConstructorWrongArgNegativeTest.dart |
deleted file mode 100644 |
index 5d58acc372437b889b87f4ee88a07f0ab2a5fc71..0000000000000000000000000000000000000000 |
--- a/tests/language/src/BodyLessConstructorWrongArgNegativeTest.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. |
-} |