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