blob: eab5305dcb456d0724b8acd580518342ec7449f3 [file] [log] [blame]
class _Closure1 {
void Function() get call => () {};
}
class _Closure2 {
_Closure2(this.call);
final void Function() call;
}
test(_Closure1 foo, _Closure2 bar) {}
---- unknown chunk starts ----
late
---- unknown chunk ends ----
_Closure1 closure1;
---- unknown chunk starts ----
late
---- unknown chunk ends ----
_Closure2 closure2;
main() {}
var field1 = closure1();
var field2 = closure2();