IDEA-79246 IDEA completion suggest raw type for element of array of typed class

This commit is contained in:
peter
2011-12-23 18:28:40 +01:00
parent 5f322bf5e6
commit b35e73487a
8 changed files with 78 additions and 21 deletions
@@ -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>
}
}