mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[^ann] IDEA-85082 IDEA erroneously uses qualified class names for type parameters when using smart completion for inner class
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
public class Test {
|
||||
|
||||
{
|
||||
new Foo<String>().method(new Outer.Inner<String>());<caret>
|
||||
}
|
||||
|
||||
static class Outer {
|
||||
static class Inner<A> {}
|
||||
}
|
||||
|
||||
class Foo<A> {
|
||||
public void method(Outer.Inner<A> inner) {}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public class Test {
|
||||
|
||||
{
|
||||
new Foo<String>().method(new <caret>);
|
||||
}
|
||||
|
||||
static class Outer {
|
||||
static class Inner<A> {}
|
||||
}
|
||||
|
||||
class Foo<A> {
|
||||
public void method(Outer.Inner<A> inner) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user