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