Files
kotlin/compiler/testData/codegen/bytecodeListing/annotations/noAdditionalAnnotationsInAccessors.kt

11 lines
199 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class Foo private constructor(s: String) {
private fun foo(s: String) {}
companion object {
fun foo() {
Foo("123").foo("456")
}
}
}