mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
6 lines
220 B
Java
6 lines
220 B
Java
class A<R>{
|
|
A(R value) {}
|
|
public static void main(String[] args) {
|
|
A<Integer> a = new A<><error descr="Expected 1 argument but found 2" tooltip="Expected 1 argument but found 2">("hi", 1)</error>;
|
|
}
|
|
} |