[IR] update testdata

This commit is contained in:
Zalim Bashorov
2020-11-05 23:40:21 +03:00
committed by teamcityserver
parent 6a1ab1b325
commit fc5c674c60
94 changed files with 354 additions and 354 deletions
+4 -4
View File
@@ -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 */
}