mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 09:08:32 +07:00
3bb0c9d03a
(cherry picked from commit 903984b162008a56def605c72743c22517304a2d)
11 lines
99 B
Java
11 lines
99 B
Java
class Pos9<X> {
|
|
|
|
Pos9(X x) {}
|
|
|
|
|
|
Pos9<X> test(X x) {
|
|
return new Pos9<>(x);
|
|
}
|
|
}
|
|
|