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

7 lines
109 B
Kotlin
Vendored

// "Move annotation to receiver type" "true"
annotation class Ann
@receiver:Ann<caret>
fun String.foo() {
}