Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onFunctionParameter.kt
T

9 lines
97 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class ann
fun test(@ann p: Int) {
}
val bar = fun(@ann g: Int) {}