blob: 468f6e457adfdd3605adb905639af2d0f1347022 [file] [log] [blame]
// FILE: Foo.java
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.CLASS)
@interface Foo {
}
// FILE: 1.kt
@Foo class Bar
fun box(): String {
Bar()
return "OK"
}