blob: b910d9ea739eeeec72b169315d6f9e3f8cd0814a [file] [log] [blame]
// "Remove redundant assignment" "true"
fun foo() = 1
fun test() {
var i: Int
<caret>i = foo()
}