741e031ff1
Use formatter in converter tests Reformat test data
15 lines
242 B
Kotlin
15 lines
242 B
Kotlin
class Library() {
|
|
class object {
|
|
fun call() {
|
|
}
|
|
fun getString(): String {
|
|
return ""
|
|
}
|
|
}
|
|
}
|
|
class User() {
|
|
fun main() {
|
|
Library.call()
|
|
Library.getString().isEmpty()
|
|
}
|
|
} |