Index: tests/language/src/BlackListedTest.dart |
diff --git a/tests/language/src/BlackListedTest.dart b/tests/language/src/BlackListedTest.dart |
deleted file mode 100644 |
index c14baa72c7f3ed2c85f56b0568fb6ddaf90ec582..0000000000000000000000000000000000000000 |
--- a/tests/language/src/BlackListedTest.dart |
+++ /dev/null |
@@ -1,78 +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 checking that static/instance field shadowing do not conflict. |
- |
-// Test that certain interfaces/classes are blacklisted from being |
-// implemented or extended. |
- |
-// bool. |
-class MyBool implements bool {} /// 01: compile-time error |
-interface MyBoolInterface extends bool default F { /// 02: compile-time error |
- MyBoolInterface(); /// 02: continued |
-} /// 02: continued |
- |
-// num. |
-class MyNum implements num {} /// 03: compile-time error |
-interface MyNumInterface extends num default F { /// 04: compile-time error |
- MyNumInterface(); /// 04: continued |
-} /// 04: continued |
- |
-// int. |
-class MyInt implements int {} /// 05: compile-time error |
-interface MyIntInterface extends int default F { /// 06: compile-time error |
- MyIntInterface(); /// 06: continued |
-} /// 06: continued |
- |
-// double. |
-class MyDouble implements double {} /// 07: compile-time error |
-interface MyDoubleInterface extends double default F { /// 08: compile-time error |
- MyDoubleInterface(); /// 08: continued |
-} /// 08: continued |
- |
-// String. |
-class MyString implements String {} /// 09: compile-time error |
-interface MyStringInterface extends String default F { /// 10: compile-time error |
- MyStringInterface(); /// 10: continued |
-} /// 10: continued |
- |
-// Function. |
-class MyFunction implements Function {} /// 11: compile-time error |
-interface MyFunctionInterface extends Function default F { /// 12: compile-time error |
- MyFunctionInterface(); /// 12: continued |
-} /// 12: continued |
- |
-// Dynamic. |
-class MyDynamic implements Dynamic {} /// 13: compile-time error |
-interface MyDynamicInterface extends Dynamic default F { /// 14: compile-time error |
- MyDynamicInterface(); /// 14: continued |
-} /// 14: continued |
- |
- |
-class F { |
- factory MyBoolInterface() { return null; } /// 02: continued |
- factory MyNumInterface() { return null; } /// 04: continued |
- factory MyIntInterface() { return null; } /// 06: continued |
- factory MyDoubleInterface() { return null; } /// 08: continued |
- factory MyStringInterface() { return null; } /// 10: continued |
- factory MyFunctionInterface() { return null; } /// 12: continued |
- factory MyDynamicInterface() { return null; } /// 14: continued |
-} |
- |
- |
-main() { |
- new MyBool(); /// 01: continued |
- new MyBoolInterface(); /// 02: continued |
- new MyNum(); /// 03: continued |
- new MyNumInterface(); /// 04: continued |
- new MyInt(); /// 05: continued |
- new MyIntInterface(); /// 06: continued |
- new MyDouble(); /// 07: continued |
- new MyDoubleInterface(); /// 08: continued |
- new MyString(); /// 09: continued |
- new MyStringInterface(); /// 10: continued |
- new MyFunction(); /// 11: continued |
- new MyFunctionInterface(); /// 12: continued |
- new MyDynamic(); /// 13: continued |
- new MyDynamicInterface(); /// 14: continued |
-} |