blob: 1dd875c56ac34e591a05d0d45767ea56dc281c4f [file] [log] [blame]
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);
}
}