59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
19 lines
345 B
Kotlin
19 lines
345 B
Kotlin
package test
|
|
|
|
public class Short {
|
|
default object {
|
|
public fun valueOf(value: String): Short {
|
|
return Short()
|
|
}
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
default object {
|
|
public fun test() {
|
|
test.Short.valueOf("1")
|
|
test.Short.valueOf("1")
|
|
java.lang.Short.valueOf("1")
|
|
}
|
|
}
|
|
} |