I am using the function ImplicitRegion[].
RegionPlot[ImplicitRegion[x^2 + y^2 == -1, {x, y}]]
which gives me a circle, though in the documentation variables are said to be real.
Adding additional assumption does not change anything:
RegionPlot[ Assuming[{x, y} [Element] Reals,
ImplicitRegion[ x^2 + y^2 == -1, {{x, -[Pi], [Pi]}, {y, -[Pi], [Pi]}}]]]
How to fix this issue?