mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-11 08:31:29 +00:00
11 lines
150 B
Java
Vendored
11 lines
150 B
Java
Vendored
package test;
|
|
|
|
public class AnnotatedMethod {
|
|
public static @interface Anno {
|
|
int value();
|
|
}
|
|
|
|
@Anno(42)
|
|
public void f() { }
|
|
}
|