blob: dac2c87ec37e54de0e42da6e0df7911e946e535c [file] [log] [blame]
class Class {}
expect(expected, actual) {}
extension Extension on Class {
method0([a]) => a;
method1([a = 42]) => a;
method2({b = 87}) => b;
method3({c = staticMethod}) => c();
static staticMethod() => 123;
}
main() {}