Files
kotlin-fork/idea/testData/quickfix/moveReceiverAnnotation/notExtensionVal.kt
T
2018-03-23 15:26:21 +03:00

11 lines
325 B
Kotlin
Vendored

// "Move annotation to receiver type" "false"
// ERROR: This annotation is not applicable to target 'declaration' and use site target '@receiver'
// ACTION: Make internal
// ACTION: Make private
// ACTION: Specify type explicitly
// ACTION: Add annotation target
annotation class Ann
@receiver:Ann<caret>
val bar get() = ""