mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
14 lines
255 B
Java
14 lines
255 B
Java
class Test {
|
|
public void test() {
|
|
final String <caret>s = "";
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(s);
|
|
}
|
|
}.run();
|
|
}
|
|
|
|
public void use() {
|
|
test();
|
|
}
|
|
} |