blob: d6a42afc245d2f6ab586b1a7a3b3933bb2bd95e6 [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
;
operator +(self::F v) self::C
;
operator -(core::int i) self::C
;
}
class B extends self::A {
synthetic constructor •() self::B
;
operator +(self::E v) self::D
;
operator -(core::int i) self::D
;
}
class C extends self::B {
synthetic constructor •() self::C
;
}
class D extends self::C {
synthetic constructor •() self::D
;
}
class E extends self::D {
synthetic constructor •() self::E
;
}
class F extends self::E {
synthetic constructor •() self::F
;
}
class Test extends core::Object {
synthetic constructor •() self::Test
;
operator [](self::Index i) self::B
;
operator []=(self::Index i, self::A v) void
;
method test() void
;
}
class Test2 extends core::Object {
synthetic constructor •() self::Test2
;
operator [](self::Index i) self::B?
;
operator []=(self::Index i, self::A? v) void
;
method test() void
;
}
static method f<T extends core::Object? = dynamic>() self::f::T%
;
static method main() dynamic
;