9 lines
130 B
Kotlin
Vendored
9 lines
130 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
fun main(foo: Foo) {
|
|
foo.apply {
|
|
is<caret>
|
|
}
|
|
}
|
|
class Foo(val isValid: String)
|
|
|
|
// EXIST: isValid |