Index: tests/language/src/MultiPass2Test.dart |
diff --git a/tests/language/src/MultiPass2Test.dart b/tests/language/src/MultiPass2Test.dart |
deleted file mode 100644 |
index 42ced2174507862c192988a8ca197046c93bf5cf..0000000000000000000000000000000000000000 |
--- a/tests/language/src/MultiPass2Test.dart |
+++ /dev/null |
@@ -1,26 +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. |
-// Dart test for loading several dart files and resolving superclasses lazily. |
-// Same as MultiPassTest, except that the file order is reversed. |
- |
-#library("MultiPass2Test.dart"); |
-#source("MultiPassA.dart"); |
-#source("MultiPassB.dart"); |
- |
- |
-class Base { |
- Base(this.value) { } |
- var value; |
-} |
- |
-class MultiPass2Test { |
- static testMain() { |
- var a = new B(5); |
- Expect.equals(5, a.value); |
- } |
-} |
- |
-main() { |
- MultiPass2Test.testMain(); |
-} |