summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/bugs/PR91053.aj
blob: 75aa004a79ae959e12b36063cec0319c3167e408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.*;

aspect X {

    private Set PR91053.aSet = new HashSet();

    public void PR91053.add(String s) {
        aSet.add(s);
    }

}

public class PR91053 { 

  public static void main(String[]argv) {
    new PR91053().add("hello");
  }
}