Files
peter 88e5b6766e IDEA-196864 Completion: classes containing no annotations are suggested after @
GitOrigin-RevId: aaa88b250510f5fb0f7c95bd2c8005a5546d53c0
2019-10-02 16:31:25 +00:00

13 lines
218 B
Java

final class MyModule {
@Target({FIELD,PARAMETER,METHOD})
@Retention(RUNTIME)
public static @interface Dependency { }
}
class MyAnotherModule {}
final class SomeService {
SomeService(@My<caret>.Inner) {
}
}