mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
Also: report every incompatible parameter, not only the first one Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: a9d75a78207d0910f0bcbb6060e38acedc3f07d3
7 lines
184 B
Java
7 lines
184 B
Java
class Test {
|
|
{
|
|
Comparable c = (<error descr="Incompatible parameter type in lambda expression: expected Object but found String">String o</error>)->{
|
|
return 0;
|
|
};
|
|
}
|
|
} |