59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
17 lines
242 B
Kotlin
17 lines
242 B
Kotlin
class Library {
|
|
default object {
|
|
fun call() {
|
|
}
|
|
|
|
fun getString(): String {
|
|
return ""
|
|
}
|
|
}
|
|
}
|
|
|
|
class User {
|
|
fun main() {
|
|
Library.call()
|
|
Library.getString().isEmpty()
|
|
}
|
|
} |