blob: 1e1fa8a8e30935f67788583936e9998ffb299361 [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
7private class PrivateClass {
8 public object ObjPublic
9 internal object ObjInternal
10 protected object ObjProtected
11 private object ObjPrivate
12
13 public class NestedPublic
14 internal class NestedInternal
15 protected class NestedProtected
16 private class NestedPrivate
17
18 public interface NestedPublicInterface
19 internal interface NestedInternalInterface
20 protected interface NestedProtectedInterface
21 private interface NestedPrivateInterface
22
23 public inner class InnerPublic
24 internal inner class InnerInternal
25 protected inner class InnerProtected
26 private inner class InnerPrivate
27}
28