10 lines
172 B
Kotlin
Vendored
10 lines
172 B
Kotlin
Vendored
// CHECK_ERRORS_AFTER
|
|
class C {
|
|
fun f() {
|
|
fun Any.<caret>local() {
|
|
if (this is String) {
|
|
this.length
|
|
}
|
|
}
|
|
}
|
|
} |