d08b18f5f8
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
10 lines
285 B
Kotlin
Vendored
10 lines
285 B
Kotlin
Vendored
// "Move annotation to receiver type" "false"
|
|
// ERROR: '@receiver:' annotations can only be applied to the receiver type of extension function or extension property declarations
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
|
|
annotation class Ann
|
|
|
|
@receiver:Ann<caret>
|
|
fun foo() {
|
|
} |