blob: 7394afa924a0de296be368315d5b09dd70458a38 [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> f = foo();
X<Integer> x = boo(<caret>f);
}
}