Change the way of runtime configuration in JsePsiUnifierTest
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
fun foo(a: Int, b: Int) {
|
||||
if ((a) + b > 0) {
|
||||
println(a*b)
|
||||
}
|
||||
|
||||
println(a*b)
|
||||
|
||||
if (a + b > (0)) {
|
||||
println(a*(b))
|
||||
}
|
||||
else {
|
||||
println(a + b)
|
||||
}
|
||||
|
||||
if (a + b > 0) {
|
||||
println(a*b)
|
||||
}
|
||||
|
||||
<selection>if (a + (b) > 0) {
|
||||
println(a*b)
|
||||
}
|
||||
else {
|
||||
println((a + b))
|
||||
}</selection>
|
||||
}
|
||||
Reference in New Issue
Block a user