blob: 090bb5b8e5f4210af0f38464b1124ef20d837301 [file] [log] [blame]
library test /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
class Index extends core::Object {
synthetic constructor •() self::Index
;
}
class A extends core::Object {
synthetic constructor •() self::A
;
}
class B extends self::A {
synthetic constructor •() self::B
;
operator +(self::C v) self::B
;
operator -(core::int i) self::B
;
operator *(self::B v) self::B
;
operator &(self::A v) self::C
;
}
class C extends self::B {
synthetic constructor •() self::C
;
}
class Base extends core::Object {
synthetic constructor •() self::Base
;
operator [](self::Index i) self::B
;
operator []=(self::Index i, self::B v) void
;
}
class Test extends self::Base {
synthetic constructor •() self::Test
;
method test() void
;
}
class Base2 extends core::Object {
synthetic constructor •() self::Base2
;
operator [](self::Index i) self::B?
;
operator []=(self::Index i, self::B? v) void
;
}
class Test2 extends self::Base2 {
synthetic constructor •() self::Test2
;
method test() void
;
}
static method f<T extends core::Object? = dynamic>() self::f::T%
;
static method main() dynamic
;