| Index: tests/language/override_field_method3_negative_test.dart
|
| ===================================================================
|
| --- tests/language/override_field_method3_negative_test.dart (revision 14582)
|
| +++ tests/language/override_field_method3_negative_test.dart (working copy)
|
| @@ -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.
|
| -// Dart test error for overriding setter with method.
|
| -
|
| -class A {
|
| - set foo(x) { }
|
| -}
|
| -
|
| -class B extends A {
|
| - foo(x) {} // method cannot override setter.
|
| -}
|
| -
|
| -class OverrideFieldMethod3NegativeTest {
|
| - static testMain() {
|
| - new B().foo(10);
|
| - }
|
| -}
|
| -
|
| -main() {
|
| - OverrideFieldMethod3NegativeTest.testMain();
|
| -}
|
|
|