cd6201c5df
#KT-19651 Fixed
11 lines
274 B
Kotlin
Vendored
11 lines
274 B
Kotlin
Vendored
object Util {
|
|
val publicStr = ""
|
|
internal val protectedStr = ""
|
|
internal val packageStr = ""
|
|
private val privateStr = ""
|
|
|
|
fun publicMethod() {}
|
|
internal fun protectedMethod() {}
|
|
internal fun packageMethod() {}
|
|
private fun privateMethod() {}
|
|
} |