import of inner classes through should get raw substitutor from outr class if applicable (IDEA-121166)

This commit is contained in:
Anna Kozlova
2015-03-20 21:09:04 +01:00
parent 0504e11398
commit 4597494195
8 changed files with 86 additions and 3 deletions
@@ -0,0 +1,10 @@
package p;
import p2.GenericClass.InnerClass;
public class Class2 {
public static boolean test(InnerClass context) {
return true;
}
}