This commit is contained in:
Dmitry Jemerov
2009-09-10 21:08:51 +04:00
parent 0e77a58da0
commit 5c49d4d458
90 changed files with 6 additions and 0 deletions
@@ -0,0 +1,8 @@
class Test {
void foo() {
Test s = new Test();
s.bar();
}
void bar() {}
}