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