Files
kotlin/compiler/testData/codegen/bytecodeListing/invisibleCompanionObject_lv12.kt

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
}