blob: 09b7037632c0195966039d9a0acc9ed57a19f7bb [file] [log] [blame]
internal object Library {
val string: String
get() = ""
fun call() {}
}
internal class User {
fun main() {
Library.call()
Library.string.isEmpty()
}
}