mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
12 lines
214 B
Java
12 lines
214 B
Java
// "Remove" "true-preview"
|
|
@Anno(value=42)<caret>
|
|
package com.example;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(ElementType.PACKAGE)
|
|
@interface Anno {
|
|
int value();
|
|
}
|