Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/annotationUseSiteTarget.kt.after
T
2020-02-21 17:03:26 +01:00

8 lines
95 B
Plaintext
Vendored

annotation class A
annotation class B
interface Foo {
@A
@B
fun getBar(): String
}