blob: 1359f9ead42f83ccbf45d0f765d0501a3911c080 [file] [log] [blame]
import java.util.*;
class Main {
public static <T> T foo() {return null;}
public static <B> List<B> bar(B b) {return null;}
static {
List<String> s = bar(foo());
}
public static <B> B bar1(B b) {return null;}
static {
String s1 = bar1(foo());
}
}