sv2v/test/basic/attr.sv

8 lines
113 B
Systemverilog

module top;
(* foo="bar" *) logic x;
initial begin
x = 1;
$display(x);
end
endmodule