mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
8 lines
147 B
Java
Vendored
8 lines
147 B
Java
Vendored
package test;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(ElementType.PACKAGE)
|
|
public @interface Ann {
|
|
}
|