[Tests] Add missing and fix incorrect

This commit is contained in:
Anastasiya Shadrina
2021-09-05 18:56:07 +07:00
committed by TeamCityServer
parent f92ac6ca14
commit b0a7be72e8
10 changed files with 344 additions and 70 deletions
@@ -1,6 +1,6 @@
class A(val a: String?)
context(A) fun f() {
if (<!UNRESOLVED_LABEL!>this@A<!>.<!UNRESOLVED_REFERENCE!>a<!> == null) return
<!UNRESOLVED_LABEL!>this@A<!>.<!UNRESOLVED_REFERENCE!>a<!>.length
if (this<!UNRESOLVED_LABEL!>@A<!>.a == null) return
this<!UNRESOLVED_LABEL!>@A<!>.a.length
}