blob: 2f3f34ed6b2c38402fdb5638d6bf2726b5000605 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/bug30695.dart:11:3: Warning: Can't declare a member that conflicts with an inherited one.
// foo() => 42;
// ^
// pkg/front_end/testcases/bug30695.dart:6:7: Warning: This is the inherited member.
// var foo = 42;
// ^
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field dynamic foo;
synthetic constructor •() void
;
}
class B extends self::A {
synthetic constructor •() void
;
method foo() dynamic
;
}
static method main() dynamic
;