mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 08:31:33 +00:00
11 lines
183 B
Java
Vendored
11 lines
183 B
Java
Vendored
package test;
|
|
|
|
public class AnnotatedConstructor {
|
|
public static @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
@Anno("constructor")
|
|
public AnnotatedConstructor() { }
|
|
}
|