Formatting multi-bit nets with the %v specifier is not allowed in SystemVerilog.
%v
Even if most tools allow it, refrain from using this syntax to keep your code portable.
module fly; wire [3:0] w; initial $display("%v", w); endmodule