Files
kotlin/compiler/testData/loadJava/sourceJava/NullInAnnotation.java
Andrey Breslav 314b1e371b Test for the case when annotation arguments contain null in Java
This is an error in Java, but it may be present in the source by mistake
2014-01-20 16:17:53 +04:00

11 lines
169 B
Java
Vendored

package test;
public interface NullInAnnotation {
@interface Ann {
String a();
String[] b();
}
@Ann(a = null, b = {null})
void foo();
}