mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-12 08:31:27 +00:00
13 lines
252 B
Java
Vendored
13 lines
252 B
Java
Vendored
package test;
|
|
|
|
public interface CustomAnnotationWithDefaultParameter {
|
|
|
|
@MyAnnotation(first = "f", second = "s")
|
|
public class MyTest {}
|
|
|
|
public @interface MyAnnotation {
|
|
String first();
|
|
String second() default("s");
|
|
}
|
|
}
|