aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr197720/C1.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr197720/C1.java')
-rw-r--r--tests/bugs162/pr197720/C1.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/bugs162/pr197720/C1.java b/tests/bugs162/pr197720/C1.java
new file mode 100644
index 000000000..999190c77
--- /dev/null
+++ b/tests/bugs162/pr197720/C1.java
@@ -0,0 +1,15 @@
+package test.aspects;
+
+
+public class C1<T> {
+
+ @MyAnn
+ protected void aMethod() {
+ System.out.println("Calling aMethod");
+ }
+
+ public void callAMethod() {
+ aMethod(); // Should be a marker here...
+ }
+
+}