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