mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
179 B
Kotlin
Vendored
10 lines
179 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
|