New J2K: Fix incorrect testData (due to nullability bug in old j2k)

This commit is contained in:
Simon Ogorodnik
2018-08-07 07:04:45 +03:00
committed by Ilya Kirillov
parent b530a30882
commit f147907799
+6
View File
@@ -0,0 +1,6 @@
internal class A {
private fun bar(s: String? = null): Int {
println("s = $s")
return 0
}
}