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