mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 10:16:28 +07:00
IDEA-216254 GitOrigin-RevId: 9d8c4074babff861b5702caa09dd320de5d63d72
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();
|
|
}
|