blob: 5811aec7c698406c1f35208d5c80d75ef945ddd7 [file] [log] [blame]
// 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();
}