Remove Concat and StringPlus intrinsics in favor of IrStringConcatenation.

This commit is contained in:
Steven Schäfer
2019-04-04 16:09:49 +02:00
committed by max-kammerer
parent 26c9d69252
commit f2392a6a28
20 changed files with 192 additions and 120 deletions
@@ -0,0 +1,8 @@
fun f(s: String?): String {
return "$s"
}
fun box(): String {
if (f(null) != "null") return "Fail"
return "OK"
}