blob: ee0a08049ccd235e2917c1c9e35a981b4ade1d07 [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov74bcc922018-05-03 20:07:54 +03005@file:JvmName("MultifileKt")
6@file:JvmMultifileClass
7package cases.private
8
9
10// const
11private const val privateConst: Int = 4
12
13// fun
14@Suppress("UNUSED_PARAMETER")
15private fun privateFun(x: Any) {}
16
17
18private class PrivateClassInMultifile {
19 internal fun accessUsage() {
20 privateFun(privateConst)
21 }
22
23}