Why is this an issue?

This rule raises an issue whenever a block statement is used.

How to fix it

Code examples

Noncompliant code example

architecture a of e is
begin
  block -- Noncompliant
  begin
  end block;
end;