Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/InnerClassConstructor.B.kt
T
Mikhael Bogdanov 8a4b01d9c6 KT-3702: Inner class constructor cannot be invoked in override function with receiver
KT-3532: NoSuchMethodError when constructing Java inner class
KT-3847: Class is not recognized as inner when loaded from binaries

 #KT-3702 Fixed
 #KT-3532 Fixed
 #KT-3847 Fixed
2013-08-06 10:58:27 +04:00

10 lines
215 B
Kotlin

//test for KT-3702 Inner class constructor cannot be invoked in override function with receiver
import second.Outer
fun Outer.testExt() {
Inner("test")
}
fun main(args: Array<String>) {
Outer().testExt()
}