summaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr389750/Code.aj
blob: 353a61af201c3b83f60dd949a3dd3418d642d2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.io.*;

interface Persistable<ID extends Serializable> {

}

public aspect Code {

  public interface I<ID extends Serializable> extends Persistable<ID> {
  }

  public static void foo() {}

  public boolean I.equals(Persistable<?> that) {
    return false;
  }
}