Update tests after switching to LV 1.9
This commit is contained in:
committed by
Space Team
parent
66544a4e00
commit
88efa6bfb6
+3
-2
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
// !SKIP_JAVAC
|
||||
// !LANGUAGE: +CustomEqualsInValueClasses, +ValueClasses
|
||||
// ALLOW_KOTLIN_PACKAGE
|
||||
@@ -50,7 +51,7 @@ value class IC4(val s: String) : WithBox {
|
||||
|
||||
@JvmInline
|
||||
value class IC5(val a: String) {
|
||||
constructor(i: Int) : this(i.toString()) <!SECONDARY_CONSTRUCTOR_WITH_BODY_INSIDE_VALUE_CLASS!>{<!>
|
||||
constructor(i: Int) : this(i.toString()) {
|
||||
TODO("something")
|
||||
}
|
||||
}
|
||||
@@ -99,7 +100,7 @@ value class MFVC4(val s: String, val t: String) : WithBox {
|
||||
|
||||
@JvmInline
|
||||
value class MFVC5(val a: String, val b: String) {
|
||||
constructor(i: Int) : this(i.toString(), "6") <!SECONDARY_CONSTRUCTOR_WITH_BODY_INSIDE_VALUE_CLASS!>{<!>
|
||||
constructor(i: Int) : this(i.toString(), "6") {
|
||||
TODO("something")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user