d69c61c972
Preserve white spaces for top members (classes, package statements, comments)
19 lines
367 B
Kotlin
19 lines
367 B
Kotlin
package test
|
|
|
|
public open class Short() {
|
|
class object {
|
|
public open fun valueOf(value: String?): Short? {
|
|
return Short()
|
|
}
|
|
}
|
|
}
|
|
|
|
open class Test() {
|
|
class object {
|
|
public open fun test() {
|
|
test.Short.valueOf("1")
|
|
test.Short.valueOf("1")
|
|
java.lang.Short.valueOf("1")
|
|
}
|
|
}
|
|
} |