blob: 807d63a0032cb33105797108e8f711538c435c6b [file] [log] [blame]
class Test {
void bar() {
foo("");
}
static <T> void f<caret>oo(T t){
if (t != null) foo(t);
}
}