Partial body resolve: fixed bug
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
Resolve target: value-parameter val p: kotlin.Boolean? smart-casted to kotlin.Boolean
|
||||
Skipped statements:
|
||||
print(p1!!.hashCode())
|
||||
@@ -0,0 +1,7 @@
|
||||
fun foo(p: Boolean?, p1: Any?) {
|
||||
if (p!!) {
|
||||
print(p1!!.hashCode())
|
||||
}
|
||||
|
||||
<caret>p.hashCode()
|
||||
}
|
||||
Reference in New Issue
Block a user