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

6 lines
100 B
Plaintext
Vendored

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