blob: 044ccf6d60945cc61e109ec26fd5d1036609f56b [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef F = () void;
class C extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method f() void {}
get g() () void
return null;
get h() dynamic
return null;
method test() void {
this.{self::C::f}();
this.{self::C::f}();
this.{self::C::g}();
this.{self::C::g}();
this.{self::C::h}();
this.{self::C::h}();
}
}
static method test(self::C c, () void f, dynamic d) void {
c.f();
f.call();
d.call();
d.f();
c.g();
c.h();
}
static method main() dynamic {}