mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
214 B
Java
9 lines
214 B
Java
public class Test4 {
|
|
String text = "Hello world!";
|
|
private class Q {
|
|
void foo() {
|
|
final String text = Test4.this.text;
|
|
System.out.println("text = " + text);
|
|
}
|
|
}
|
|
} |