Index: dart/compiler/javatests/com/google/dart/compiler/resolver/ParameterInitializerNegativeTest2.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/ParameterInitializerNegativeTest2.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/ParameterInitializerNegativeTest2.dart |
deleted file mode 100644 |
index 423311593c7e549a8bac2fc100ba9486a316c4e5..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/ParameterInitializerNegativeTest2.dart |
+++ /dev/null |
@@ -1,12 +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 error - parameter initializer is not valid in ordinary methods. |
- |
-class A { |
- A(this.x) { } |
- A.myctor(this.x) { } |
- foo(Object y, this.x) { } // expect to fail. |
- Object x; |
-} |