blob: 3c9cdd74afa07e1006587fd8894f50b43c81cb00 [file] [log] [blame]
class Example {
private static class X<T> {}
private static <T> X<T> foo() { return new X<T>(); }
private static <T> X<T> boo(X<T> x) {return x;}
private static void goo() {
X<Integer> x = boo(Example.<Integer>foo());
}
}