mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 19:52:07 +07:00
GitOrigin-RevId: 5ee84ec5206ded06637d9b08026e8dc7bdfff1f0
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";
|
|
}
|
|
} |