Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/referenceExpression/annotationByClassLiteral.kt.after
T
2019-03-15 17:27:06 +07:00

9 lines
127 B
Plaintext
Vendored

// "Create annotation 'Foo'" "true"
class Test{
fun doSth(){
Foo::class.java
}
}
annotation class <caret>Foo