IDEA-66179 Bad behavior of inserting generic type constructor when autocompleting

This commit is contained in:
peter
2011-03-25 15:36:51 +01:00
parent dcd5a3850a
commit f60df30b28
4 changed files with 73 additions and 20 deletions
@@ -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>
}
}