11 lines
166 B
Kotlin
11 lines
166 B
Kotlin
trait Expr {
|
|
public fun testThis() {
|
|
if (this is Num) {
|
|
this.<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
class Num(val toCheck : Int) : Expr
|
|
|
|
// EXIST: toCheck |