[JVM_IR] Add tests of Compose-like default argument handling.

This commit is contained in:
Mads Ager
2020-11-30 16:41:07 +01:00
committed by Alexander Udalov
parent a7efa5c98b
commit 83588e9f22
6 changed files with 397 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
fun box(): String {
fun foo(s: String = "O") = s
return foo() + foo("K")
}