blob: ee0a08049ccd235e2917c1c9e35a981b4ade1d07 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
@file:JvmName("MultifileKt")
@file:JvmMultifileClass
package cases.private
// const
private const val privateConst: Int = 4
// fun
@Suppress("UNUSED_PARAMETER")
private fun privateFun(x: Any) {}
private class PrivateClassInMultifile {
internal fun accessUsage() {
privateFun(privateConst)
}
}