mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 23:11:44 +07:00
9 lines
142 B
Java
9 lines
142 B
Java
package aaa;
|
|
import java.lang.annotation.*;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface MyObjectType {}
|
|
|
|
class A {
|
|
MyObjectType<caret>
|
|
} |