mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
10 lines
333 B
Kotlin
Vendored
10 lines
333 B
Kotlin
Vendored
// "Move annotation to receiver type" "false"
|
|
// ERROR: This annotation is not applicable to target 'top level property without backing field or delegate' and use site target '@receiver'
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
// ACTION: Specify type explicitly
|
|
|
|
annotation class Ann
|
|
|
|
@receiver:Ann<caret>
|
|
val bar get() = "" |