mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-79246 IDEA completion suggest raw type for element of array of typed class
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class Bar<T> {
|
||||
{
|
||||
Bar<T> f = new Bar<T>();<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class Bar<T> {
|
||||
{
|
||||
Bar<T> f = new <caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
interface Foo {}
|
||||
class FooEx<T> implements Foo {}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
Foo f = new FooEx<<caret>>();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
interface Foo {}
|
||||
class FooEx<T> implements Foo {}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
Foo f = new FE<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user