mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-66179 Bad behavior of inserting generic type constructor when autocompleting
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
interface Foo {}
|
||||
interface FooEx<T> extends Foo {
|
||||
T foo();
|
||||
}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
Foo f = new FooEx<<caret>>() {};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
interface Foo {}
|
||||
interface FooEx<T> extends Foo {
|
||||
T foo();
|
||||
}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
Foo f = new FE<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user