Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/callableNameIntrinsic.kt
T

14 lines
244 B
Kotlin
Vendored

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 // Not supported
// val e = A()::b.name // Not supported
}
}