mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
275 B
Kotlin
Vendored
13 lines
275 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
interface IValue {
|
|
val value: Int
|
|
}
|
|
|
|
inline class TestOverriding(override val value: Int) : IValue
|
|
|
|
inline class TestPublic(val value: Int)
|
|
|
|
inline class TestInternal(internal val value: Int)
|
|
|
|
inline class TestPrivate(private val value: Int) |