Why is this an issue?

An unknown system task or function is called.

How to fix it

Code examples

Noncompliant code example

module fly;
  always_comb begin
    if (!$unknown_sys_name) begin // Noncompliant
    end
  end
endmodule