mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
367 B
Java
17 lines
367 B
Java
public class TestIntelliJ
|
|
{
|
|
|
|
public synchronized void foo() {
|
|
System.out.println("foo");
|
|
}
|
|
|
|
public static synchronized void foo<caret>Static() {
|
|
System.out.println("fooStatic");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
TestIntelliJ test = new TestIntelliJ();
|
|
test.foo();
|
|
TestIntelliJ.fooStatic();
|
|
}
|
|
} |