Files
kotlin-fork/compiler/testData/diagnostics/tests/namedArguments/allowForJavaAnnotation.kt
T
2015-09-08 12:11:30 +03:00

13 lines
120 B
Kotlin
Vendored

// FILE: A.java
public @interface A {
int x();
String y();
}
// FILE: 1.kt
@A(x = 1, y = "2")
fun test() {}