import org.jetbrains.annotations.Nullable; class BrokenAlignment { void test(@Nullable Object n) { synchronized (n) { } } }