blob: 92dd618372c76ae9d22c5f48a1397d95ac027bd9 [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.private
private open class PrivateClass public constructor() {
internal val internalVal = 1
protected fun protectedFun() = internalVal
}