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
4 lines
72 B
Kotlin
4 lines
72 B
Kotlin
fun f() {
|
|
val v = if (true) 1 else 2
|
|
println(1 * <caret>v + 2)
|
|
} |