mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
10 lines
125 B
Kotlin
Vendored
10 lines
125 B
Kotlin
Vendored
class A {
|
|
fun foo() {}
|
|
val bar = 42
|
|
}
|
|
|
|
val aFoo = A()::foo
|
|
val aBar = A()::bar
|
|
val A_foo = A::foo
|
|
val A_bar = A::bar
|