mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
13 lines
163 B
Java
13 lines
163 B
Java
package test;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Retention(RetentionPolicy.CLASS)
|
|
@interface Aaa {
|
|
}
|
|
|
|
class HasAnnotatedMethod {
|
|
@Aaa
|
|
public void f() { }
|
|
}
|