sv2v/test/basic/attr.v

8 lines
111 B
Verilog

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