Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/InPropertyAccessorWithAnnotation.kt
T
2019-11-27 13:43:10 +01:00

10 lines
190 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: TRUE
// TYPE: '@Some("X")'
annotation class Some(val message: String)
class InPropertyAccessorWithAnnotation {
val prop1: Int
<caret>
get() = 42
}