blob: a5873220466d5b26dbdccd4e06ed23f1fb4f9811 [file] [log] [blame]
import java.lang.annotation.Annotation;
// "Iterate" "true"
class Test {
void foo() {
for (Annotation annotation : getClass().getAnnotations()) {
}
}
}