blob: 4aaa17953f2e7a4e6a42ebb937aa5dc9e578f427 [file] [log] [blame]
package com.siyeh.igtest.threading;
public class NestedSynchroneInspection
{
public void foo()
{
synchronized(this)
{
synchronized(this)
{
}
}
}
}