blob: 42b6a16403a0b0ec2ba26d7b2bd0541e82454c0c [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(dynamic x) core::double
return 1.0;
}
static field dynamic v = new self::C::•().f(() dynamic {
return 1;
});
static method main() dynamic {
self::v;
}