blob: c725f076cf471e5e1d21fe1c405e829524f4d98e [file] [log] [blame]
class Test {
String myT = "";
void bar(){
System.out.println(myT);
}
void foo() {
bar();
}
}