aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr235829/a/Adapter.java
blob: 53dd91eb158bbbf2c50bd3c3ddfef62b17e5ce82 (plain)
1
2
3
4
5
6
7
package a;

public interface Adapter<T> {
  interface Setter<V> {}

  public <V> Setter<V> makeSetter();
}