mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
this unifies error messages with method calls and allows more specific tooltips and additional fixes GitOrigin-RevId: 5ab4340d822bba3d6563da12a16e4c41216a8627
6 lines
250 B
Java
6 lines
250 B
Java
class A<R>{
|
|
A(R value) {}
|
|
public static void main(String[] args) {
|
|
A<Integer> a = new A<><error descr="'A(R)' in 'A' cannot be applied to '(java.lang.String, int)'" tooltip="Expected 1 arguments but found 2">("hi", 1)</error>;
|
|
}
|
|
} |