Uniqe assertion label name

In reply to asvn:

That’s not possible, but you can get close to it by using:


for (genvar i = 0; i < ch_number; i++) begin: assertions
  assert_name: assert_property(ch_timing(...));
end

This will give you assertions[0].assert_name, assertions[1].assert_name, etc.