[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
@@ -1,7 +1,7 @@
val test: Unit
field = try { //BLOCK
field = try { // BLOCK
}
catch (...) { //BLOCK
catch (...) { // BLOCK
}
get
@@ -24,7 +24,7 @@ fun test2() {
<set-x>(value = 0)
{ //BLOCK
{ // BLOCK
val tmp0: Int = <get-x>()
<set-x>(value = tmp0.inc())
tmp0
@@ -1,5 +1,5 @@
fun foo() {
{ //BLOCK
{ // BLOCK
do// COMPOSITE {
val x: Int = 42
// } while (EQEQ(arg0 = x, arg1 = 42).not())
@@ -10,10 +10,10 @@ fun f(f1: Function0<String> = local fun <anonymous>(): String {
fun box(): String {
var result: String = "fail"
try { //BLOCK
try { // BLOCK
f() /*~> Unit */
}
catch (...) { //BLOCK
catch (...) { // BLOCK
result = "OK"
}
+1 -1
View File
@@ -1,6 +1,6 @@
typealias Test1 = String
fun foo() {
{ //BLOCK
{ // BLOCK
}
}