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 interface InternalInterface { 8 public object ObjPublic 9 private object ObjPrivate 10 11 public class NestedPublic 12 private class NestedPrivate 13 14 public interface NestedPublicInterface 15 private interface NestedPrivateInterface 16 17 } 18 19