summaryrefslogblamecommitdiff
path: root/test/files/run/t4891/J_2.java
blob: db1cc52b1311bf07c948280d5b7ba57e63042ba6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                          
import test.generic.*;

public class J_2 {
  public static <A> void foo(T1<A> x) {
    // x.m1();
  }

  public static void main(String[] args) {
    Bug4891.main(null);
    T1<Object> x = new C2<Object>();
    foo(x);
  }
}