blob: 07692f84d62746dac328705ceef8dd52cad298ed [file] [log] [blame]
// @dart = 2.9
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) {}