| Index: tests/language/src/StaticField4aNegativeTest.dart
|
| diff --git a/tests/language/src/StaticField4aNegativeTest.dart b/tests/language/src/StaticField4aNegativeTest.dart
|
| deleted file mode 100644
|
| index ad315b9ab721dab3cd48438392bc0b625a577475..0000000000000000000000000000000000000000
|
| --- a/tests/language/src/StaticField4aNegativeTest.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 method cannot be set as a static field.
|
| -
|
| -class Foo {
|
| - Foo() {}
|
| - void m() {}
|
| -}
|
| -
|
| -class StaticField4aNegativeTest {
|
| - static testMain() {
|
| - if (false) {
|
| - Foo.m = 1;
|
| - }
|
| - }
|
| -}
|
| -
|
| -main() {
|
| - StaticField4aNegativeTest.testMain();
|
| -}
|
|
|