blob: 4ba00271e8f5ef82e73461536d4b10208a17c478 [file] [log] [blame]
public class TestIntelliJ
{
public synchronized void foo() {
System.out.println("foo");
}
public static void main(String[] args) {
TestIntelliJ test = new TestIntelliJ();
test.foo();
synchronized (TestIntelliJ.class) {
System.out.println("fooStatic");
}
}
}