Index: tests/language/src/CyclicConstructorTest.dart |
diff --git a/tests/language/src/CyclicConstructorTest.dart b/tests/language/src/CyclicConstructorTest.dart |
deleted file mode 100644 |
index 98dd54c03fafcc3ebb3f5457dad6e1bdcf46eaf0..0000000000000000000000000000000000000000 |
--- a/tests/language/src/CyclicConstructorTest.dart |
+++ /dev/null |
@@ -1,17 +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. |
- |
-class A { |
- A.a() : this.b(); |
- A.b() |
- : this.a() /// 01: compile-time error |
- ; |
- A.c() : this.b(); |
-} |
- |
-main() { |
- new A.a(); |
- new A.b(); |
- new A.c(); |
-} |