This commit is contained in:
Dmitry Jemerov
2009-09-10 21:54:38 +04:00
parent 9f4d10da95
commit 7980717db9
17 changed files with 10 additions and 4 deletions
@@ -0,0 +1,15 @@
class Test8 {
void bar() {
}
class <caret>B {
int c;
void foo() {
c = 10;
bar();
}
}
}