mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
268 B
Java
13 lines
268 B
Java
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.LOCAL_VARIABLE})
|
|
@interface Anno {}
|
|
|
|
class Test {
|
|
void test() {
|
|
<selection>@Anno String s;
|
|
s = "";</selection>
|
|
s = "external assign";
|
|
}
|
|
} |