blob: cbea8cafb8deaa42e7358617dd6794a6f4e8c1b9 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class I extends core::Object {
synthetic constructor •() self::I*
: super core::Object::•()
;
abstract method call() void;
}
class C extends core::Object implements self::I {
synthetic constructor •() self::C*
: super core::Object::•()
;
method call([core::int* x = #C1]) → void {}
}
static method main() dynamic {
self::I* i = new self::C::•();
([core::int*]) →* void f = i;
}
constants {
#C1 = null
}