Index: tests/language/src/StaticField1aRunNegativeTest.dart |
diff --git a/tests/language/src/StaticField1aRunNegativeTest.dart b/tests/language/src/StaticField1aRunNegativeTest.dart |
deleted file mode 100644 |
index 5b4f44e0303a7673d3808ed8c4f68bb1bbd8f9b7..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StaticField1aRunNegativeTest.dart |
+++ /dev/null |
@@ -1,20 +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. |
-// Test that a static method cannot be read as an instance field. |
- |
-class Foo { |
- Foo() {} |
- static void m() {} |
-} |
- |
-class StaticField1aRunNegativeTest { |
- static testMain() { |
- var foo = new Foo(); |
- var m = foo.m; |
- } |
-} |
- |
-main() { |
- StaticField1aRunNegativeTest.testMain(); |
-} |