mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 07:15:01 +07:00
GitOrigin-RevId: e6d977dd095f07e0654e465820fd73208db9c5dc
9 lines
140 B
Java
9 lines
140 B
Java
import java.lang.annotation.*;
|
|
|
|
@Target(ElementType.TYPE_USE)
|
|
@interface N {}
|
|
class A {
|
|
void m(@N String par) {
|
|
par.field<caret>
|
|
}
|
|
} |