mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
11 lines
151 B
Kotlin
Vendored
11 lines
151 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
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
|