Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/annotationsTargetingLateinitAccessors.fir.kt
T

15 lines
311 B
Kotlin
Vendored

// Please make sure that this test is consistent with the blackbox test "annotationsOnLateinitAccessors.kt"
import kotlin.reflect.KProperty
annotation class Ann
annotation class AnnRepeat
class LateinitProperties {
@get:Ann
lateinit var y0: String
@get:Ann
private lateinit var y1: String
}