Index: tests/language/src/ConstructorRedirect5NegativeTest.dart |
diff --git a/tests/language/src/ConstructorRedirect5NegativeTest.dart b/tests/language/src/ConstructorRedirect5NegativeTest.dart |
deleted file mode 100644 |
index 498be3b45396df46995235af67b943a3fb6320f6..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ConstructorRedirect5NegativeTest.dart |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// Copyright (c) 2011, 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. |
-// Redirection constructors must not call any super constructors. |
- |
-class A { |
- var x; |
- A(this.x) {} |
- A.named(x) : this(3), super() {} |
-} |
- |
-class ConstructorRedirect5NegativeTest { |
- static testMain() { |
- new A.named(10); |
- } |
-} |
- |
-main() { |
- ConstructorRedirect5NegativeTest.testMain(); |
-} |