dart-sdk/tests/language_2/setter_override2_test.dart
Kevin Millikin 8f6c6c2a8e Implement some missing override checking
Detect the following conflicts:

  - declaring a method and inheriting a setter or getter with the same
    name

  - declaring a getter or setter and inheriting a method with the same
    name

  - inheriting both a method and a getter or setter (or both) with the
    same name

Declaring a method and a getter with the same name is already
detected.  Declaring a method and a setter with the same name is not
yet detected, because it should be done in the same way as
method/getter declaration conflicts.

Bug: https://github.com/dart-lang/sdk/issues/32613
Change-Id: I2d168894453d7032372388faa0872d3fc7aa9ef7
Reviewed-on: https://dart-review.googlesource.com/53803
Commit-Queue: Kevin Millikin <kmillikin@google.com>
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
Reviewed-by: Aske Simon Christensen <askesc@google.com>
2018-05-08 13:40:51 +00:00

31 lines
812 B
Dart

// Copyright (c) 2013, 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 we do not report a compile-time error when an instance setter named
// foo= is declared in a class inheriting an instance method, field, or getter
// named foo, or an instance setter named foo=.
import "package:expect/expect.dart";
import "package:meta/meta.dart" show virtual;
class A {
var foo = 42; // //# 00: ok
get foo => 42; // //# 01: ok
foo() => 42; // //# 02: compile-time error
set foo(value) {} // //# 03: ok
}
class B extends A {
var foo_;
set foo(value) {
foo_ = value;
}
}
main() {
var b = new B();
b.foo = 42;
Expect.equals(42, b.foo_);
}