mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
209 B
Java
11 lines
209 B
Java
public class kt3698 {
|
|
|
|
@interface Foo {
|
|
int value();
|
|
}
|
|
|
|
@Foo(KotlinClass.FOO) // Error here
|
|
public static void main(String[] args) {
|
|
System.out.println(KotlinClass.FOO);
|
|
}
|
|
} |