[FIR TEST] Add problematic CFG test

This commit is contained in:
Mikhail Glukhikh
2020-06-01 18:26:04 +03:00
parent a476d1dbc4
commit 718f0240a1
5 changed files with 168 additions and 0 deletions
@@ -0,0 +1,13 @@
// !DUMP_CFG
class B(p0: String) {
val p1 = p0
val p2: Int = p0.length
var p3: String
constructor(p0: String, p1: String) : this(p0) {
p3 = p1
}
init {
p1 = p0.length
p3 = ""
}
}