Files
kotlin-fork/compiler/testData/diagnostics/tests/PropertyInitializers.kt
T

10 lines
163 B
Kotlin
Vendored

// FIR_IDENTICAL
class Foo(val a: Int, b: Int) {
val c = a + b
val d: Int
get() = a
val e: Int
get() = <!UNRESOLVED_REFERENCE!>b<!>
}