Files
2020-06-15 15:02:03 +03:00

8 lines
178 B
Java

import foo.bar.*;
import foo.baz.Baz;
class Main {
void foo() throws ReflectiveOperationException {
Class<Baz> aType = Baz.class;
Test.class.getAnnotation(aType);
}
}