summaryrefslogtreecommitdiff
path: root/test/files/neg/primitive-sigs-1/J_2.java
blob: b416befb4d47fe6ae9ff5cb1f78cd652cf94ce7b (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_2 {
  public static Integer f(AC<Integer> x) { return x.f(); }
  public static void main(String[] args) {
    f(new Bippy());
  }
}