summaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr237447/SomeClass.java
blob: 6837aa8407a5a6471d1510c1f6165523acd2da2f (plain)
1
2
3
4
5
6
7
8
9
public class SomeClass {
        GenericGenericMemberClass member;

        public void someMethod() {
                // commenting the following line will remove compilation errors (and mask the problem)
                member.test();
        }
}