blob: 4251d25e78fbbbbf8b5ad2981883d1687a729f4b [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package cases.nestedClasses
private object PrivateObject {
public object ObjPublic
internal object ObjInternal
private object ObjPrivate
public class NestedPublic
internal class NestedInternal
private class NestedPrivate
public interface NestedPublicInterface
internal interface NestedInternalInterface
private interface NestedPrivateInterface
}