mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
11 lines
202 B
Kotlin
Vendored
11 lines
202 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
inline class Foo(val x: Int) {
|
|
companion object {
|
|
fun funInCompanion() {}
|
|
|
|
private const val constValInCompanion = 1
|
|
}
|
|
|
|
fun inInlineClass() {}
|
|
} |