• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 package cases.nestedClasses
6 
7 internal object InternalObject {
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 
22