mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
3aea481c1f
GitOrigin-RevId: b2d1ed10839ffac236b724c224f856e6bb99cb14
8 lines
178 B
Java
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);
|
|
}
|
|
} |