mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
33 lines
612 B
Kotlin
Vendored
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
|
|
}
|