| Index: tests/language/src/StaticField2aRunNegativeTest.dart
|
| diff --git a/tests/language/src/StaticField2aRunNegativeTest.dart b/tests/language/src/StaticField2aRunNegativeTest.dart
|
| deleted file mode 100644
|
| index cf45187149b51ee7576c23b714c795314593d6f1..0000000000000000000000000000000000000000
|
| --- a/tests/language/src/StaticField2aRunNegativeTest.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 set as an instance field.
|
| -
|
| -class Foo {
|
| - Foo() {}
|
| - static void m() {}
|
| -}
|
| -
|
| -class StaticField2aRunNegativeTest {
|
| - static testMain() {
|
| - var foo = new Foo();
|
| - foo.m = 1;
|
| - }
|
| -}
|
| -
|
| -main() {
|
| - StaticField2aRunNegativeTest.testMain();
|
| -}
|
|
|