blob: 3bb548762c91b24959deddc7606db78dea8c66ff [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method m(dynamic x) dynamic
return this.call(x);
method call(dynamic x) dynamic
return 42;
}
static method main() dynamic {
core::print(new self::C::•().m(42));
}