mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
275 B
Java
15 lines
275 B
Java
class Test {
|
|
|
|
public static void main(String[] args) {
|
|
final String s = "text";
|
|
newMethod(s);
|
|
}
|
|
|
|
private static void newMethod(final String s) {
|
|
class A {
|
|
{
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
}
|
|
} |