Files
kotlin-fork/idea/testData/quickfix/moveReceiverAnnotation/notExtensionVal.kt
T
2017-05-30 15:47:21 +03:00

10 lines
306 B
Kotlin
Vendored

// "Move annotation to receiver type" "false"
// ERROR: '@receiver:' annotations could be applied only to extension function or extension property declarations
// ACTION: Make internal
// ACTION: Make private
// ACTION: Specify type explicitly
annotation class Ann
@receiver:Ann<caret>
val bar get() = ""