dart-sdk/tests/language/method_override7_test.dart
regis@google.com f9df206e2e Report compile-time errors for conflicting overrides as specified by latest
language spec (fix issue 12342).
Add override conflict tests.
Update status files.
Add support for 'ok' status in multi-tests.

R=hausner@google.com

Review URL: https://codereview.chromium.org//22999022

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26302 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-16 23:39:41 +00:00

24 lines
669 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 report a compile-time error when a static function conflicts
// with an inherited instance member of the same name.
import "package:expect/expect.dart";
class A {
var foo = 42; /// 00: compile-time error
get foo => 42; /// 01: compile-time error
foo() => 42; /// 02: compile-time error
set foo(value) { } /// 03: static type warning
}
class B extends A {
static foo() => 42;
}
main() {
Expect.equals(42, B.foo());
}