mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
15 lines
294 B
Java
15 lines
294 B
Java
import java.util.Formatter;
|
|
|
|
public class Test {
|
|
|
|
String message;
|
|
static String staticField = "Smt";
|
|
|
|
public void run() {
|
|
<selection>local();
|
|
System.out.println(staticField);
|
|
System.out.println(message);</selection>
|
|
}
|
|
|
|
private static void local(){}
|
|
} |