aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241047/SomeSubClass2.java
blob: 7d67a4226c651ab0a1aa3f452b3ed83998aebf9b (plain)
1
2
3
4
5
6
7
8
9
public class SomeSubClass2 extends SomeBaseClass2<Integer> {

 // this method matches correctly
 public void tag_someMethod() {
  System.out.println("some sub method2");
 }
}