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