aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr389750/Clazz2.java
blob: 1cf6a69c38e49b5958b941200ec1fbc6168aedc7 (plain)
1
2
3
4
5
6
7
8
9
public class Clazz2 {
  public static void main(String[] argv) {
    Bar bs = new Bar();
    String s = bs.bar("abc",null);
  }
}

class Bar implements Code2.I<String> {
}