blob: 8ba79c4dbcc601eb946041d971485d7291ab6c2b [file] [log] [blame]
library test;
class C {
C(x());
}
var v = new C(() {
return 1;
});
main() {}