dart-sdk/tests/language_2/override_field_method1_negative_test.dart
pq a02ca2070f Migrate block 141 to Dart 2.0.
Bug:
Change-Id: If806f50a6254c187fc862fc7e5c19f45ccb9a8e8
Reviewed-on: https://dart-review.googlesource.com/8361
Reviewed-by: Ben Konyi <bkonyi@google.com>
2017-09-26 18:42:04 +00:00

23 lines
508 B
Dart

// 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 field with method.
class A {
var foo;
}
class B extends A {
foo() {} // method cannot override field.
}
class OverrideFieldMethod1NegativeTest {
static testMain() {
new B().foo();
}
}
main() {
OverrideFieldMethod1NegativeTest.testMain();
}