mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
178 B
Kotlin
Vendored
11 lines
178 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
inline class R(private val r: Long) {
|
|
fun test() = ok()
|
|
|
|
companion object {
|
|
private fun ok() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = R(0).test() |