IDEA-177034 A qualified class name should be suggested when there's a shadowing type parameter

This commit is contained in:
peter
2017-08-14 19:13:11 +02:00
parent d78fe7b18f
commit 75179fcfef
4 changed files with 30 additions and 8 deletions
@@ -0,0 +1,8 @@
class Abc<Tttt> {
class Tttt {}
<Tttt> void foo(Tttt<caret> t) {
}
}
@@ -0,0 +1,8 @@
class Abc<Tttt> {
class Tttt {}
<Tttt> void foo(Abc.Tttt<caret> t) {
}
}