Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/arguments/argumentsOfJavaAnnotation.kt
T
2020-08-04 08:59:14 +03:00

16 lines
217 B
Kotlin
Vendored

// FILE: Ann.java
public @interface Ann {
String s();
int x();
int y() default 1;
}
// FILE: main.kt
@Ann(x = 10, s = "")
<!INAPPLICABLE_CANDIDATE!>@Ann(10, "")<!>
@Ann(x = 10, s = "", y = 10)
class A