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

6 lines
192 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
import java.util.ArrayList
@ArrayList<Int>(1, 1) fun b() {}
@Xoo(<!UNRESOLVED_REFERENCE!>x<!>) fun c() {}
@java.lang.Deprecated(<!UNRESOLVED_REFERENCE!>x<!>) fun a() {}