mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
13 lines
171 B
Java
13 lines
171 B
Java
// "Add missing annotation parameter 'value'" "true-preview"
|
|
class Test {
|
|
|
|
@MyAnnotati<caret>on
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String value();
|
|
}
|
|
|
|
} |