mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
233 B
Kotlin
Vendored
13 lines
233 B
Kotlin
Vendored
// LANGUAGE_VERSION: 1.3
|
|
|
|
class TestPrivateCompanion {
|
|
private companion object Test
|
|
}
|
|
|
|
open class TestProtectedCompanion {
|
|
protected companion object Test
|
|
}
|
|
|
|
class TestInternalCompanion {
|
|
internal companion object Test
|
|
} |