5d8730f912
Original commit: ba180f915a
14 lines
219 B
Kotlin
14 lines
219 B
Kotlin
@file:JvmName("Utils")
|
|
@file:JvmMultifileClass
|
|
package test
|
|
|
|
fun commonFun2() {}
|
|
|
|
fun publicDeletedFun2() {}
|
|
|
|
private val deletedVal2: Int = 20
|
|
|
|
private fun deletedFun2(): Int = 10
|
|
|
|
private fun changedFun2(arg: Int) {}
|