Files
kotlin/compiler/testData/codegen/bytecodeListing/callableNameIntrinsic.kt
2016-04-28 23:03:00 +03:00

11 lines
145 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
}
}