Added a regression test for Char constant serialization.

This commit is contained in:
Alexander Gorshenev
2018-06-26 13:18:23 +03:00
committed by alexander-gorshenev
parent 756fe0735b
commit b93188a056
3 changed files with 10 additions and 0 deletions
@@ -0,0 +1 @@
inline fun foo(x: Char = '\u042b') = x
@@ -0,0 +1,3 @@
fun main(args: Array<String>) {
println(foo())
}