Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/AmbigiousAnnotationConstructor.fir.kt
T
2020-08-04 08:59:14 +03:00

6 lines
192 B
Kotlin
Vendored

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