mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
59 lines
1.3 KiB
Kotlin
Vendored
59 lines
1.3 KiB
Kotlin
Vendored
public class PublicClass {
|
|
|
|
companion object {}
|
|
|
|
public object ObjPublic
|
|
internal object ObjInternal
|
|
protected object ObjProtected
|
|
private object ObjPrivate
|
|
|
|
public class NestedPublic
|
|
internal class NestedInternal
|
|
protected class NestedProtected
|
|
private class NestedPrivate
|
|
|
|
public inner class InnerPublic
|
|
internal inner class InnerInternal
|
|
protected inner class InnerProtected
|
|
private inner class InnerPrivate
|
|
}
|
|
|
|
internal class InternalClass {
|
|
companion object {}
|
|
}
|
|
|
|
internal class InternalClassInternalCompanion {
|
|
internal companion object {}
|
|
}
|
|
|
|
internal class InternalClassPrivateCompanion {
|
|
private companion object {}
|
|
}
|
|
|
|
private class PrivateClass {
|
|
companion object {}
|
|
|
|
public object ObjPublic
|
|
internal object ObjInternal
|
|
protected object ObjProtected
|
|
private object ObjPrivate
|
|
|
|
public class NestedPublic
|
|
internal class NestedInternal
|
|
protected class NestedProtected
|
|
private class NestedPrivate
|
|
|
|
public inner class InnerPublic
|
|
internal inner class InnerInternal
|
|
protected inner class InnerProtected
|
|
private inner class InnerPrivate
|
|
}
|
|
|
|
private class PrivateClassInternalCompanion {
|
|
internal companion object
|
|
}
|
|
private class PrivateClassPrivateCompanion {
|
|
private companion object
|
|
}
|
|
|