blob: ca3fd8344bb99f249920d124b67ded89ab72dd0e [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
internal object InternalObject {
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
}