blob: 3d30861421581c429facf1ce6ef418f9f783c4d8 [file] [log] [blame]
class Pos9<X> {
Pos9(X x) {}
Pos9<X> test(X x) {
return new Pos9<>(x);
}
}