mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 21:30:56 +07:00
this unifies error messages with method calls and allows more specific tooltips and additional fixes GitOrigin-RevId: 5ab4340d822bba3d6563da12a16e4c41216a8627
9 lines
277 B
Java
9 lines
277 B
Java
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
|
|
{
|
|
<error descr="Incompatible types. Found: 'java.util.ArrayList<java.util.List>', required: 'java.util.List<java.util.List<java.lang.String>>'">List<List<String>> l = new ArrayList<List<>>();</error>
|
|
}
|
|
} |