blob: 2781a507509c8deea31150a337c33a50fd6339be [file] [log] [blame]
extension type Foo(String x) {
static const int x1 = 42;
int x2 = 42;
int bar1({int baz = x2}) => 42;
int bar2({int baz = x}) => 42;
}