Files
kotlin/compiler/testData/codegen/bytecodeListing/annotations/noAdditionalAnnotationsInAccessors.kt
2018-09-14 16:23:57 +02:00

10 lines
173 B
Kotlin
Vendored

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