[IR] update testdata
This commit is contained in:
committed by
teamcityserver
parent
6a1ab1b325
commit
fc5c674c60
+4
-4
@@ -8,7 +8,7 @@ fun test(i: Int): Int {
|
||||
|
||||
fun testEmptyBranches1(flag: Boolean) {
|
||||
when {
|
||||
flag -> { //BLOCK
|
||||
flag -> { // BLOCK
|
||||
}
|
||||
true -> true /*~> Unit */
|
||||
}
|
||||
@@ -19,20 +19,20 @@ fun testEmptyBranches1(flag: Boolean) {
|
||||
|
||||
fun testEmptyBranches2(flag: Boolean) {
|
||||
when {
|
||||
flag -> { //BLOCK
|
||||
flag -> { // BLOCK
|
||||
}
|
||||
true -> true /*~> Unit */
|
||||
}
|
||||
when {
|
||||
flag -> true /*~> Unit */
|
||||
true -> { //BLOCK
|
||||
true -> { // BLOCK
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun testEmptyBranches3(flag: Boolean) {
|
||||
when {
|
||||
flag -> { //BLOCK
|
||||
flag -> { // BLOCK
|
||||
}
|
||||
true -> true /*~> Unit */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user