Files
kotlin-fork/analysis/low-level-api-fir/testData/lazyResolve/compilerRequiredAnnotationsOnFunction.kt
Dmitrii Gridin 33e6a85a2d [LL FIR] rename testdata to testData to avoid copyright generation
We exclude testData pattern from copyright scope
2023-09-18 21:12:45 +00:00

6 lines
136 B
Kotlin
Vendored

annotation class Anno(val s: String)
@Deprecated("function") @Anno("function")
fun f<caret>ooo(@Deprecated("a") @Anno("a") a: Int) {
}