f87d2d1fcc
chooser. Do not suggest parenthesized expressions #KT-9028 Fixed
10 lines
95 B
Kotlin
Vendored
10 lines
95 B
Kotlin
Vendored
fun foo() {
|
|
val t = ((<caret>1 + 2) + 3) * 4
|
|
}
|
|
|
|
/*
|
|
1
|
|
1 + 2
|
|
(1 + 2) + 3
|
|
((1 + 2) + 3) * 4
|
|
*/ |