Fix small compilation problems in LC testdata which should not influence LC results

This commit is contained in:
Ilya Kirillov
2021-12-23 15:11:52 +03:00
parent 02f9f116b2
commit 4e58dc3467
8 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
class C @JvmOverloads constructor(
val type: String?,
val p1: Boolean = false,
val p2: String = type
val p2: String = type!!
) {
@JvmOverloads
fun foo(x: Int = 1, y: Double, z: String = "") {}