blob: 01f362f259c08e70ba092e5190d1ffac42a95b3a [file] [log] [blame]
package test
class Short(s: String) {
companion object {
fun valueOf(value: String): Short {
return Short(value)
}
}
}
internal object Test {
fun test() {
test.Short.valueOf("1")
test.Short.valueOf("1")
java.lang.Short.valueOf("1")
}
}