blob: a54d191795fb4fdacf8570453d2ec774ae13f9f5 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/instance_setter_conflict.dart:11:14: Error: Can't declare a member that conflicts with an inherited one.
// static get v {
// ^
// pkg/front_end/testcases/general/instance_setter_conflict.dart:6:7: Context: This is the inherited member.
// int v = 0;
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int v;
synthetic constructor •() self::A
;
}
class C extends self::A {
static field core::int n;
synthetic constructor •() self::C
;
static get v() dynamic
;
}
static method main() dynamic
;