Files

8 lines
116 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Test {
fun foo()
val bar: Int
}
fun Test?.foo() {}
val Test?.bar: Int get() = 42