mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
11 lines
145 B
Kotlin
Vendored
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
|
|
}
|
|
}
|