blob: 045c2e8c84229e47e8955a3115fe8a358585371c [file] [log] [blame]
library test;
class C<T> {
C(T x());
}
var v = new C<int>(() {
return 1;
});
main() {}