blob: 1c9edef504181a449b145f6eaae18a1cedde64a2 [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
public open class PublicOpenClass {
protected object ObjProtected
protected class NestedProtected
protected interface NestedProtectedInterface
protected inner class InnerProtected
}