aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241047/case2/SomeSubClass.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr241047/case2/SomeSubClass.java')
-rw-r--r--tests/bugs162/pr241047/case2/SomeSubClass.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs162/pr241047/case2/SomeSubClass.java b/tests/bugs162/pr241047/case2/SomeSubClass.java
new file mode 100644
index 000000000..ac8f761a1
--- /dev/null
+++ b/tests/bugs162/pr241047/case2/SomeSubClass.java
@@ -0,0 +1,8 @@
+public class SomeSubClass extends SomeBaseClass<Integer> {
+
+ // this method is not matched correctly...
+ public void tag_someMethod() {
+ System.out.println("some sub method");
+ }
+}
+