[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
fun test(a: Any?, flag: Boolean, x: Any?) {
|
||||
if (a == null) return
|
||||
a.hashCode()
|
||||
|
||||
val b: Any?
|
||||
|
||||
if (flag) {
|
||||
b = a
|
||||
b.hashCode()
|
||||
}
|
||||
else {
|
||||
b = x
|
||||
b.hashCode()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user