Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/rendering/conflictingOverloads.fir.kt
T

10 lines
280 B
Kotlin
Vendored

// !RENDER_DIAGNOSTICS_MESSAGES
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.TYPE, AnnotationTarget.CLASS, AnnotationTarget.PROPERTY, AnnotationTarget.VALUE_PARAMETER)
annotation class An
@An
data class A(@An val x: @An Int) {
@An
fun copy(@An x: @An Int) = x
}