[IR] Forbid MFVC primary constructors default arguments

Signed-off-by: Evgeniy.Zhelenskiy <Evgeniy.Zhelenskiy@jetbrains.com>

#KT-1179
This commit is contained in:
Evgeniy.Zhelenskiy
2022-10-20 18:36:41 +02:00
committed by Space Team
parent c6e54e6433
commit adee33d3e5
20 changed files with 111 additions and 44 deletions
@@ -12,7 +12,7 @@ value class A<T : Any>(val x: List<T>)
value class B(val x: UInt)
@JvmInline
value class C(val x: Int, val y: B, val z: String = "3")
value class C(val x: Int, val y: B, val z: String)
@JvmInline
value class D(val x: C) {