14 lines
219 B
Kotlin
Vendored
14 lines
219 B
Kotlin
Vendored
@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) {}
|