Index: dart/compiler/javatests/com/google/dart/compiler/resolver/CyclicRedirectedConstructorNegativeTest.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/CyclicRedirectedConstructorNegativeTest.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/CyclicRedirectedConstructorNegativeTest.dart |
deleted file mode 100644 |
index b2a2ee3b706a1cb29d1d1e66034f12f96ce5de9d..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/CyclicRedirectedConstructorNegativeTest.dart |
+++ /dev/null |
@@ -1,9 +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. |
- |
-class A { |
- A(x) : this.foo(x); |
- A.foo(x) : this.bar(x, x * 2); |
- A.bar(x,y) : this(x + y); |
-} |