aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr389750/Code4.aj
blob: cc10d351ee30119f6338b5f609ff34a0fcc1e137 (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 Code4 {

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

  public static void foo() {}

  public <T> Z I<Z>.bar(Z foo, T that) {
    return foo;
  }
}