Label or '}' expected

This error only occurs when multiple statements exist in a bailout section:

bailout:
  |z| < 4, |z| < 8

Since this section can only contain a single boolean expressions, this is invalid. Remove the superfluous statements until a single boolean expression remains:

bailout:
  |z| < 4

See Also
Errors