mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
8 lines
221 B
Java
8 lines
221 B
Java
import java.lang.annotation.*;
|
|
|
|
//OK
|
|
@Target({ElementType.TYPE})
|
|
@Expose @interface Expose {}
|
|
|
|
@Target({ElementType.FIELD})
|
|
@<error descr="'@Expose1' not applicable to annotation type">Expose1</error>@interface Expose1 {} |