Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/priority/extensionVsMember.kt
T
2023-04-30 15:58:31 +00:00

12 lines
165 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-57968
class Some(val child: Some?)
val Some.foo get(): Int =
if ((child?.foo ?: 0) > 1) {
0
} else {
1
}