blob: a0d1fb248d9b75b6d68f0750a9b3c7e0a63c6e7a [file] [log] [blame]
library test /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
method f() core::int
return throw "";
}
static method g(self::C? c) dynamic {
core::int? x = let final self::C? #t1 = c in #t1 == null ?{core::int?} null : #t1{self::C}.{self::C::f}(){() → core::int};
let final self::C? #t2 = c in #t2 == null ?{core::int?} null : #t2{self::C}.{self::C::f}(){() → core::int};
}
static method main() dynamic {}