mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Partially improves inference in incomplete mode GitOrigin-RevId: 1d9c7c75afd524ea02980be8f96c19fba1eaaf54
13 lines
762 B
Java
13 lines
762 B
Java
import java.util.*;
|
|
import <info descr="Not resolved until the project is fully loaded">foo</info>.<info descr="Not resolved until the project is fully loaded">bar</info>.<info descr="Not resolved until the project is fully loaded">baz</info>.*;
|
|
|
|
class Test {
|
|
void testDiamond() {
|
|
List<<info descr="Not resolved until the project is fully loaded">X</info>> list = new ArrayList<>();
|
|
}
|
|
|
|
void test() {
|
|
List<String> data = new ArrayList<>(
|
|
Arrays.asList(<info descr="Not resolved until the project is fully loaded">a</info>.<info descr="Not resolved until the project is fully loaded">X</info>, <info descr="Not resolved until the project is fully loaded">a</info>.<info descr="Not resolved until the project is fully loaded">Y</info>));
|
|
}
|
|
} |