blob: 6ce2bcdd048afc86ae29444b6017a269fb7ceafe [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov74bcc922018-05-03 20:07:54 +03005package cases.nestedClasses
6
7public object PublicObject {
8
9 public object ObjPublic
10 internal object ObjInternal
11 private object ObjPrivate
12
13 public class NestedPublic
14 internal class NestedInternal
15 private class NestedPrivate
16
17 public interface NestedPublicInterface
18 internal interface NestedInternalInterface
19 private interface NestedPrivateInterface
20}
21