Files
kotlin/compiler/testData/compileJavaAgainstKotlin/class/InnerClass.kt
pyos c7d7d903cd Add the IR version of CompileJavaAgainstKotlin tests
Only the WithoutJavac version for now, because the other one ignores
javac errors.
2019-04-12 12:43:37 +02:00

7 lines
116 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
package test
class Outer {
inner class Inner1
inner class Inner2(param: String)
}