blob: 39a6ba8a4b03e37377a01c77e19df74480eec0f0 [file] [log] [blame]
public class Test4 {
String text = "Hello world!";
private class Q {
void foo() {
final String text = Test4.this.text;
System.out.println("text = " + text);
}
}
}