Fix invalid signature for UL method

Fixed #KT-32245
This commit is contained in:
Igor Yakovlev
2020-04-20 13:23:36 +03:00
parent ed3ae785fb
commit 8a7aac728d
5 changed files with 35 additions and 4 deletions
@@ -0,0 +1,6 @@
// PSI_ELEMENT: com.intellij.psi.PsiMethod
// OPTIONS: overrides
public interface Foo2 {
interface X<T> {}
void <caret>baz(X clazz);
}