blob: fe62349cb3db2a307c65ac68bd631088da4c2ed6 [file] [log] [blame]
// PROBLEM: none
fun sqrPlusOne(arg: Int): Int {
var <caret>other = arg
other++
return other * other
}