Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/invisibleCompanionObject_lv12.kt
T

13 lines
233 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.2
class TestPrivateCompanion {
private companion object Test
}
open class TestProtectedCompanion {
protected companion object Test
}
class TestInternalCompanion {
internal companion object Test
}