6 lines
127 B
Kotlin
Vendored
6 lines
127 B
Kotlin
Vendored
class A(val a: String?)
|
|
|
|
context(A) fun f() {
|
|
if (this@A.a == null) return
|
|
<!DEBUG_INFO_SMARTCAST!>this@A.a<!>.length
|
|
} |