Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/prohibitPositionedArgument/tooManyArgs.fir.kt
T

12 lines
143 B
Kotlin
Vendored

// FILE: A.java
public @interface A {
int a();
double b();
boolean x();
}
// FILE: b.kt
@A(false,
1.0,
false, 1, 2) fun foo1() {}