mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
259 B
Kotlin
Vendored
10 lines
259 B
Kotlin
Vendored
// "Move annotation to receiver type" "false"
|
|
// ERROR: This annotation is not applicable to target 'top level function' and use site target '@receiver'
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
|
|
annotation class Ann
|
|
|
|
@receiver:Ann<caret>
|
|
fun foo() {
|
|
} |