Index: tests/language/src/DefaultFactoryLibrary.dart |
diff --git a/tests/language/src/DefaultFactoryLibrary.dart b/tests/language/src/DefaultFactoryLibrary.dart |
deleted file mode 100644 |
index 842ad4997c780fa5190385b5e14a81a6a718bcce..0000000000000000000000000000000000000000 |
--- a/tests/language/src/DefaultFactoryLibrary.dart |
+++ /dev/null |
@@ -1,14 +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 program for testing default factories defined across libraries |
- |
-#library("lib"); |
-#import("DefaultFactoryLibraryTest.dart", prefix:"test"); |
- |
-// References a factory class in another library |
-interface A default test.C { |
- A(); |
- int methodA(); |
-} |