blob: d668d2a41eaeba179451c5546cd0029946f80b9d [file] [log] [blame]
class Test {
static void <caret>main(Test t){
if (true) t.foo();
}
void foo(){}
}
class Test1 {
void bar(Test t) {
if (true) {t.foo();}
}
}