Index: compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart |
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart b/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart |
deleted file mode 100644 |
index 7132c972efd02e9bfd2e1cd6e420e7e44a62618f..0000000000000000000000000000000000000000 |
--- a/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart |
+++ /dev/null |
@@ -1,11 +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. |
- |
-// expect failure - final constructor redirects to non-const constructor. |
- |
-class A { |
- const A(x) : this.foo(x); |
- A.foo(this.x) { } |
- var x; |
-} |