Files
kotlin-fork/compiler/testData/diagnostics/tests/PropertyInitializers.fir.kt
T
2020-02-11 18:50:51 +03:00

9 lines
146 B
Kotlin
Vendored

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