diff --git a/compiler/testData/ir/irText/expressions/kt28006.kt.txt b/compiler/testData/ir/irText/expressions/kt28006.kt.txt index c0301248356..487c63c15b7 100644 --- a/compiler/testData/ir/irText/expressions/kt28006.kt.txt +++ b/compiler/testData/ir/irText/expressions/kt28006.kt.txt @@ -1,36 +1,36 @@ val test1: String - field = "🤗" + field = "\uD83E\uDD17" get val test2: String - field = "🤗🤗" + field = "\uD83E\uDD17\uD83E\uDD17" get const val testConst1: String - field = "🤗" + field = "\uD83E\uDD17" get const val testConst2: String - field = "🤗🤗" + field = "\uD83E\uDD17\uD83E\uDD17" get const val testConst3: String - field = "🤗🤗🤗" + field = "\uD83E\uDD17\uD83E\uDD17\uD83E\uDD17" get const val testConst4: String - field = "🤗🤗🤗🤗" + field = "\uD83E\uDD17\uD83E\uDD17\uD83E\uDD17\uD83E\uDD17" get fun test1(x: Int): String { - return "🤗" + x + return "\uD83E\uDD17" + x } fun test2(x: Int): String { - return x + "🤗" + return x + "\uD83E\uDD17" } fun test3(x: Int): String { - return x + "🤗" + x + return x + "\uD83E\uDD17" + x } diff --git a/compiler/testData/ir/irText/expressions/stringTemplates.kt.txt b/compiler/testData/ir/irText/expressions/stringTemplates.kt.txt index 7a8f1c46f28..a33e42997c2 100644 --- a/compiler/testData/ir/irText/expressions/stringTemplates.kt.txt +++ b/compiler/testData/ir/irText/expressions/stringTemplates.kt.txt @@ -23,9 +23,7 @@ val test4: String get val test5: String - field = " -abc -" + field = "\nabc\n" get val test6: String diff --git a/compiler/testData/ir/irText/firProblems/coercionToUnitForNestedWhen.kt.txt b/compiler/testData/ir/irText/firProblems/coercionToUnitForNestedWhen.kt.txt index c43634f4f08..b6145c87e15 100644 --- a/compiler/testData/ir/irText/firProblems/coercionToUnitForNestedWhen.kt.txt +++ b/compiler/testData/ir/irText/firProblems/coercionToUnitForNestedWhen.kt.txt @@ -1,5 +1,5 @@ private const val BACKSLASH: Char - field = '\' + field = '\\' private get private fun Reader.nextChar(): Char? {