Partial body resolve tests: more informative test output
This commit is contained in:
@@ -1,2 +1,14 @@
|
||||
Resolve target: val s: kotlin.String? smart-cast to kotlin.String
|
||||
Skipped statements:
|
||||
----------------------------------------------
|
||||
class C(val s: String?) {
|
||||
fun foo(p: Boolean) {
|
||||
if (p) {
|
||||
print(s!!)
|
||||
}
|
||||
else {
|
||||
print(this.s!!)
|
||||
}
|
||||
|
||||
<caret>s.size
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user