mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
- Parameter named `value` is always first - Array parameter represented as vararg iff its name is `value` and all other parameters have default values #KT-2576 Fixed #KT-6641 Fixed #KT-6220 Fixed #KT-6652 Fixed
10 lines
145 B
Kotlin
Vendored
10 lines
145 B
Kotlin
Vendored
// FILE: A.java
|
|
public @interface A {
|
|
double b();
|
|
Class<?> x1();
|
|
int a();
|
|
String value();
|
|
Class<?> x();
|
|
Class<?> x2();
|
|
}
|