Files
kotlin/idea/testData/quickfix/removeRedundantAssignment/functionCall.kt
2016-10-05 11:32:41 +03:00

7 lines
105 B
Kotlin
Vendored

// "Remove redundant assignment" "true"
fun foo() = 1
fun test() {
var i: Int
<caret>i = foo()
}