mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: ed0cf0daf5dbfb034882d49ad5e9c03f264b451e
9 lines
184 B
Java
9 lines
184 B
Java
class Test {
|
|
|
|
void test(int num) {
|
|
m<error descr="Expected 2 arguments but found 1">(num == 1 ? null : new Integer(1))</error>;
|
|
}
|
|
|
|
void m(String s, int i) {}
|
|
}
|