Files
kotlin/compiler/testData/codegen/bytecodeListing/callableNameIntrinsic.kt

15 lines
229 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class A {
val a = ""
fun b() = ""
fun test() {
val a = A::a.name
val b = A::b.name
val c = ::A.name
val d = this::a.name
val e = A()::b.name
}
}