55b221776b
Test data for Remove Unnecessary Parentheses was updated, since parentheses in foo && (bar && baz) is not "unnecessary": removing it changes program semantics. #KT-2637 in progress
5 lines
129 B
Kotlin
5 lines
129 B
Kotlin
fun f() {
|
|
// this case is not processed specifically in implementation, but it works
|
|
val x = -y
|
|
println(5-<caret>x)
|
|
} |