8 lines
160 B
Kotlin
Vendored
8 lines
160 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
|
|
class A(val a: String?)
|
|
|
|
context(A) fun f() {
|
|
if (this@A.a == null) return
|
|
<!DEBUG_INFO_SMARTCAST!>this@A.a<!>.length
|
|
} |