summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241047/case2/SomeSubClass.java
blob: ac8f761a12076a02cbbb7b5c985b238d09e2f6a7 (plain)
1
2
3
4
5
6
7
8
public class SomeSubClass extends SomeBaseClass<Integer> {

 // this method is not matched correctly...
 public void tag_someMethod() {
  System.out.println("some sub method");
 }
}