blob: 8f6a08bb9950f6a15a5af272e0838d64f975e493 [file] [log] [blame]
package test;
public interface NullInAnnotation {
@interface Ann {
String a();
String[] b();
}
@Ann(a = null, b = {null})
void foo();
}