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

8 lines
124 B
Plaintext
Vendored

// "Create annotation 'foo'" "true"
@[foo(1, "2")] fun test() {
}
annotation class <caret>foo(val i: Int, val s: String)