Files
kotlin/compiler/testData/codegen/bytecodeListing/accessorForTopLevelMembers.kt
Mads Ager ef36b81c67 [JVM_IR] Reduce the amount of super suffixes on accesibility bridges.
The super suffix was used for any static field/method that needed
an accessor. We should only use it when that field or method is
inherited.
2021-01-22 13:20:25 +01:00

6 lines
89 B
Kotlin
Vendored

private val x: String = "OK"
private fun f(y: String) = y
class A {
fun g() = f(x)
}