Files
kotlin/compiler/testData/codegen/bytecodeListing/companionObjectVisibility_lv13.kt
Dmitry Petrov 0dd04c3424 Postpone companion object field visibility
Have to reconsider this issue because of interface companion objects.
2018-09-27 10:35:23 +03:00

17 lines
315 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.3
open class TestProtectedCompanionInClass {
protected companion object
}
class TestInternalCompanionInClass {
internal companion object
}
class TestPrivateCompanionInClass {
private companion object
}
interface TestPrivateCompanionInInterface {
private companion object
}