blob: d97574a3613bd03e571bceae9b9c990f020abe1a [file] [log] [blame]
class Test {
static int bar(){return 1;}
void foo() {
Test s = new Test();
s.bar();
}
}