This commit is contained in:
Dmitry Jemerov
2009-09-10 20:13:55 +04:00
parent f6b9382f4e
commit 40139d670a
49 changed files with 14 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
class Test {
int myField;
Test(){
myField = 7;
}
void foo() {
if (myField == 7){}
}
void bar() {
foo();
}
}

View File

@@ -0,0 +1,14 @@
class Test {
int myField;
Test(){
myField = 7;
}
void foo() {
if (myField == 7){}
}
void bar() {
foo();
}
}