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