mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
181 B
Kotlin
Vendored
10 lines
181 B
Kotlin
Vendored
// FILE: A.java
|
|
public @interface A {
|
|
Class<?> arg() default Integer.class;
|
|
int x();
|
|
}
|
|
|
|
// FILE: b.kt
|
|
@A(arg = String::class, x = 4) class MyClass2
|
|
@A(x = 5) class MyClass3
|