Index: tests/language/src/StaticField2aTest.dart |
diff --git a/tests/language/src/StaticField2aTest.dart b/tests/language/src/StaticField2aTest.dart |
deleted file mode 100644 |
index 34a35bd50a455ae2c8d5efc04ae5dc8f84c1cbd0..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StaticField2aTest.dart |
+++ /dev/null |
@@ -1,22 +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 set as an instance field. |
- |
-class Foo { |
- Foo() {} |
- static void m() {} |
-} |
- |
-class StaticField2aTest { |
- static testMain() { |
- if (false) { |
- var foo = new Foo(); |
- foo.m = 1; |
- } |
- } |
-} |
- |
-main() { |
- StaticField2aTest.testMain(); |
-} |