summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/src/intentionDescriptions/ChangeClassParametersIntention/before.java.template
blob: 96eb1b46dbd297b21c780ed31bdccd8a9a64f293 (plain)
1
2
3
4
5
6
7
8
9
10
public class X {
    {
        new Comparable<<spam>Object</spam>>() {
            @Override
            public int compareTo(Object o) {
              return 0;
            }
        }
    }
}