aboutsummaryrefslogtreecommitdiff
path: root/annotation-file-utilities/tests/InnerTypeResolution.goal
diff options
context:
space:
mode:
Diffstat (limited to 'annotation-file-utilities/tests/InnerTypeResolution.goal')
-rw-r--r--annotation-file-utilities/tests/InnerTypeResolution.goal16
1 files changed, 16 insertions, 0 deletions
diff --git a/annotation-file-utilities/tests/InnerTypeResolution.goal b/annotation-file-utilities/tests/InnerTypeResolution.goal
new file mode 100644
index 0000000..f1cbc0c
--- /dev/null
+++ b/annotation-file-utilities/tests/InnerTypeResolution.goal
@@ -0,0 +1,16 @@
+package annotator.tests;
+
+import java.util.Map;
+
+public class InnerTypeResolution {
+ @java.lang.annotation.Deprecated
+ Map.Entry method01(@java.lang.annotation.Tainted Map m) {
+ return null;
+ }
+
+ @java.lang.annotation.Deprecated
+ Map.Entry method02(java.util.Map<@java.lang.annotation.Tainted String, Object> m) {
+ return null;
+ }
+}
+