Files
kotlin-fork/idea/testData/refactoring/inline/varWithAssignment.kt
T
Alexey Sedunov e3d8d819da Inline Variable: Var support
#KT-5169 Fixed
2015-10-01 17:35:22 +03:00

6 lines
143 B
Kotlin
Vendored

// ERROR: Cannot perform refactoring.\nCannot find a single definition to inline
fun foo() {
var x = 1
val t = <caret>x + 1
x = 2
}