Index: tests/language/src/StaticField4NegativeTest.dart |
diff --git a/tests/language/src/StaticField4NegativeTest.dart b/tests/language/src/StaticField4NegativeTest.dart |
deleted file mode 100644 |
index bdd5626b65a0d55b8e4a97f63dc4115d8461f2b3..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StaticField4NegativeTest.dart |
+++ /dev/null |
@@ -1,21 +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 an instance field cannot be set as a static field. |
- |
-class Foo { |
- Foo() {} |
- var x; |
-} |
- |
-class StaticField4NegativeTest { |
- static testMain() { |
- if (false) { |
- Foo.x = 1; |
- } |
- } |
-} |
- |
-main() { |
- StaticField4NegativeTest.testMain(); |
-} |