mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
20 lines
298 B
Kotlin
Vendored
20 lines
298 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
fun foo() {}
|
|
|
|
class A {
|
|
fun bar() = ""
|
|
}
|
|
|
|
fun Int.baz() = this
|
|
|
|
fun box(): String {
|
|
assertEquals("foo", ::foo.name)
|
|
assertEquals("bar", A::bar.name)
|
|
assertEquals("baz", Int::baz.name)
|
|
return "OK"
|
|
}
|