blob: 8ddf39170635b988ff5bfa4a2ac6442da3907314 [file] [log] [blame]
// SKIP_IN_RUNTIME_TEST because there's no stable way to determine if a field is initialized with a non-null value in runtime
package test;
public interface StringConstantInParam {
public static final String HEL = "hel";
public @interface Anno {
String value();
}
@Anno(HEL + "lo")
public static class Class { }
}