[IR] Drop duplicated meta info from interpreters tests

This commit is contained in:
Ivan Kylchik
2023-04-18 11:03:30 +02:00
committed by Space Team
parent 3f60c83921
commit 6b75b3bc4a
25 changed files with 590 additions and 540 deletions
@@ -12,8 +12,9 @@ const val complexTrimIndent =
456
""".<!EVALUATED("ABC\n123\n456")!>trimIndent()<!>
// STOP_EVALUATION_CHECKS
fun box(): String {
if (<!EVALUATED("123")!>trimIndent<!>.id() != "123") return "Fail 1"
if (<!EVALUATED("ABC\n123\n456")!>complexTrimIndent<!>.id() != "ABC\n123\n456") return "Fail 2"
if (trimIndent.id() != "123") return "Fail 1"
if (complexTrimIndent.id() != "ABC\n123\n456") return "Fail 2"
return "OK"
}