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