aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr349961/MyParameterAnnotation.java
blob: b87571b9e788e301a0e7a04eea8f2b46c8df12a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 package com.example;

 import java.lang.annotation.ElementType;
 import java.lang.annotation.Inherited;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;

 @Inherited
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.PARAMETER)
 public @interface MyParameterAnnotation {
 }