c++: Fix handling of the `final` contextual keyword
[geany-mirror.git] / tests / ctags / bug1691412.java
blobe4d5509e66f4e33ca70378ebece62695c7634083
1 public class C {
2 @NonNull
3 @CheckReturnValue(explanation = "When this function returns, the caller can get the Cipher name selected by the user in the Dialog.")
4 public static DefaultCipherDialog newInstance() {
5 DefaultCipherDialog instance = new DefaultCipherDialog();
6 instance.init();
7 return instance;
10 @Override
11 public String toString() { return "hello"; }
14 @Target(ElementType.METHOD)
15 @Retention(RetentionPolicy.SOURCE)
16 public @interface CustomAnnotation {