aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/primitive-sigs-1/J.java
blob: 2e43b8330c0ab9723bc085c2800e0d8370769eea (plain) (blame)
1
2
3
4
5
6
7
8
// java: often the java or scala compiler will save us from
// the untruth in the signature, but not always.
public class J {
  public static Integer f(AC<Integer> x) { return x.f(); }
  public static void main(String[] args) {
    f(new Bippy());
  }
}