Index: tests/language/src/StaticField3NegativeTest.dart |
diff --git a/tests/language/src/StaticField3NegativeTest.dart b/tests/language/src/StaticField3NegativeTest.dart |
deleted file mode 100644 |
index 2e3bc6a92432db04a997c32774d4df5cd33a6765..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StaticField3NegativeTest.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 read as a static field. |
- |
-class Foo { |
- Foo() {} |
- var x; |
-} |
- |
-class StaticField3NegativeTest { |
- static testMain() { |
- if (false) { |
- var x = Foo.x; |
- } |
- } |
-} |
- |
-main() { |
- StaticField3NegativeTest.testMain(); |
-} |