mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
13 lines
237 B
Java
Vendored
13 lines
237 B
Java
Vendored
package test;
|
|
|
|
import java.lang.String;
|
|
import java.util.List;
|
|
|
|
public class AnnotatedValueParameter {
|
|
public static @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
public void f(@Anno("non-empty") List<String> parameter) { }
|
|
}
|