JVM_IR: handle type parameters in constructors for @JvmOverloads stubs

This commit is contained in:
Georgy Bronnikov
2019-10-11 15:04:17 +03:00
parent 7ceb2c79b8
commit f3cae210f8
6 changed files with 23 additions and 16 deletions
@@ -0,0 +1,6 @@
// TARGET_BACKEND: JVM
// WITH_RUNTIME
class C<K> @JvmOverloads constructor(val s: String = "OK")
fun box() = C<Unit>().s