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

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
}