blob: a563a7eee6dadc8dec31fcea4ce7383eb4d6cbb2 [file]
fun Any.with(operation : Any.() -> Any) = operation().toString()
val f = { a : Int -> }
fun box() : String {
return if(20.with {
this
} == "20")
"OK"
else
"fail"
}