Fix inline class coercion in string template with StringBuilder.append

Inline class values with array as a carrier type were not boxed.

 #KT-27113
This commit is contained in:
Dmitry Petrov
2018-09-28 11:23:24 +03:00
parent 6532916dd2
commit 70e60ea9bc
8 changed files with 85 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM_IR
// WITH_RUNTIME
inline class A(val a: Any)
inline class NA(val b: Any?)
fun box(): String {
val ns1 = NA(A("abc"))
val ns2 = NA(null)
val t = "-$ns1-$ns2-"
if (t != "-NA(b=A(a=abc))-NA(b=null)-") return throw AssertionError(t)
return "OK"
}