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,11 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package a
public open class Outer() {
open class Inner {
fun <caret>foo() {
}
}
}