Files
kotlin/idea/testData/codeInsight/postfix/parAssignment.kt
2016-10-03 10:36:48 +03:00

6 lines
109 B
Kotlin
Vendored

fun foo(x: Any) {
var y: Any
// Only 'x' expression is suggested, not 'y = x'
y = x.par<caret>
}