summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Deprecations.java
blob: 838ff68131de49243e76ac7cc23d3e48ad817e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class Deprecations {
  /** @deprecated */
  public int byComment;

  @Deprecated
  public int byAnno;

  /** @deprecated */
  public void byComment() { }

  @Deprecated
  public void byAnno() { }

  /** @deprecated */
  public static class ByComment { }

  @Deprecated
  public static class ByAnno { }
}