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