Files
kotlin/compiler/testData/codegen/dumpDeclarations/interfaces.kt
2016-03-29 13:49:36 +03:00

33 lines
612 B
Kotlin
Vendored

public interface PublicInterface {
companion object {}
public object ObjPublic
private object ObjPrivate
public class NestedPublic
private class NestedPrivate
}
internal interface InternalInterface {
companion object {}
}
internal interface InternalInterfacePrivateCompanion {
private companion object {}
}
private interface PrivateInterface {
companion object {}
public object ObjPublic
private object ObjPrivate
public class NestedPublic
private class NestedPrivate
}
private interface PrivateInterfacePrivateCompanion {
private companion object
}