Files
kotlin-fork/idea/testData/refactoring/introduceVariable/FromLambda.kt
T
Alexander Podkhalyuzin ddd25c703a SmartPointers in Introduce Variable refactoring
It's often case, when psi can die after reparse, especially after
reformatting cases, SmartPointers are opposite to it, can survive

#KT-32601 Fixed
2019-10-30 18:08:14 +03:00

4 lines
85 B
Kotlin
Vendored

fun foo() {
val z = <selection>123</selection>
val x: (Int) -> Int = { 123}
}