mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
11 lines
169 B
Java
Vendored
11 lines
169 B
Java
Vendored
package test;
|
|
|
|
public interface NullInAnnotation {
|
|
@interface Ann {
|
|
String a();
|
|
String[] b();
|
|
}
|
|
|
|
@Ann(a = null, b = {null})
|
|
void foo();
|
|
} |