Generate light classes for Kotlin inner classes

#KT-6237 Fixed
This commit is contained in:
Alexey Sedunov
2014-11-12 21:22:34 +03:00
parent da915aee7e
commit b09684024b
16 changed files with 192 additions and 2 deletions
@@ -0,0 +1,7 @@
package b;
import a.Outer;
public class X extends Outer.A {
Outer.A next = new Outer.A();
}