aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features160/parameterAnnotationMatching/SimpleType.java
blob: 31687b67a77081666df7e0abbd0a1161dfd90858 (plain)
1
2
3
4
5
6
7
class SimpleType {
  public void a(AnnotatedWithAnno1 p) {}
  public void b(@Anno1 String p) {}
  public void c(@Anno1 AnnotatedWithAnno2 p) {}
  public void d(@Anno1 @Anno2 String p) {}
  public void e(@Anno1 @Anno2 AnnotatedWithBoth p) {}
}