d69c61c972
Preserve white spaces for top members (classes, package statements, comments)
17 lines
244 B
Kotlin
17 lines
244 B
Kotlin
class Library() {
|
|
class object {
|
|
fun call() {
|
|
}
|
|
|
|
fun getString(): String {
|
|
return ""
|
|
}
|
|
}
|
|
}
|
|
|
|
class User() {
|
|
fun main() {
|
|
Library.call()
|
|
Library.getString().isEmpty()
|
|
}
|
|
} |