8a4b01d9c6
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
6 lines
172 B
Kotlin
6 lines
172 B
Kotlin
//test for KT-3702 Inner class constructor cannot be invoked in override function with receiver
|
|
package second
|
|
|
|
public class Outer() {
|
|
inner class Inner(test: String)
|
|
} |