Index: tests/language/src/ParameterInitializer3NegativeTest.dart |
diff --git a/tests/language/src/ParameterInitializer3NegativeTest.dart b/tests/language/src/ParameterInitializer3NegativeTest.dart |
deleted file mode 100644 |
index b6425c40bb8c91df012d345c95bcabc9a3f82168..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ParameterInitializer3NegativeTest.dart |
+++ /dev/null |
@@ -1,24 +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. |
- |
-// Fails because this.x parameter is used in a factory. |
- |
-class Foo { |
- var x; |
- factory Foo(this.x) { |
- return new Foo.named(); |
- } |
- Foo.named() {} |
-} |
- |
- |
-class ParameterInitializer3NegativeTest { |
- static testMain() { |
- new Foo(2); |
- } |
-} |
- |
-main() { |
- ParameterInitializer3NegativeTest.testMain(); |
-} |