Index: tests/language/src/NamedConstructorTest.dart |
diff --git a/tests/language/src/NamedConstructorTest.dart b/tests/language/src/NamedConstructorTest.dart |
deleted file mode 100644 |
index 51429d3db3ff99ec0429e5d4d90b0578e6fb1c98..0000000000000000000000000000000000000000 |
--- a/tests/language/src/NamedConstructorTest.dart |
+++ /dev/null |
@@ -1,25 +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 NamedConstructorTest { |
- int x_; |
- |
- NamedConstructorTest.fill(int x) { |
- // Should resolve to the fill method |
- fill(x); |
- } |
- |
- void fill(int x) { |
- x_ = x; |
- } |
- |
- static testMain() { |
- var a = new NamedConstructorTest.fill(3); |
- assert(a.x_ == 3); |
- } |
-} |
- |
-main() { |
- NamedConstructorTest.testMain(); |
-} |