mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +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
9 lines
125 B
Kotlin
Vendored
9 lines
125 B
Kotlin
Vendored
// FILE: A.java
|
|
public @interface A {
|
|
double b();
|
|
Class<?> x1();
|
|
int a();
|
|
Class<?> x();
|
|
Class<?> x2();
|
|
}
|