mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
Improves IDEA-186918 Wrong code completion for new EnumMap GitOrigin-RevId: 3235b254cc33f37933c72fb6b79ca1b9bdcf8eb6
8 lines
114 B
Java
8 lines
114 B
Java
public class Test {
|
|
void run() {
|
|
MyBox<Class<String>> box = new MyB<caret>
|
|
}
|
|
|
|
record MyBox<T>(T t) {}
|
|
}
|