blob: 53606ae91defae07a67a7e3fab944e07342e0190 [file] [log] [blame]
package test;
public interface StringInParam {
public @interface Anno {
String value();
}
@Anno("hello")
public static class Class { }
}