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,16 @@
class Test18 {
String str;
class <caret>A {
boolean flag;
public A(boolean flag) {
this.flag = flag;
}
void foo() {
System.out.println("str = " + str);
}
}
}