Files
kotlin-fork/compiler/testData/codegen/regressions/kt753.jet
T
2012-09-17 18:00:21 +04:00

11 lines
196 B
Plaintext

package bitwise_demo
fun Long?.shl(bits : Int?) : Long = this!!.shl(bits!!)
fun box() : String {
val x : Long? = 10
val y : Int? = 12
System.out?.println(x.shl(y))
return "OK"
}