3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-09 19:21:26 +00:00

verilog: test cases that look like SVA labels #862

This commit is contained in:
Emil J. Tywoniak 2025-09-05 12:34:38 +02:00
parent c30fd46ea3
commit 62120bda06

View file

@ -0,0 +1,10 @@
read_verilog -sv <<EOT
module test(input wire A);
localparam TEST = 1;
always_comb begin
case (A)
TEST: assert(1);
endcase
end
endmodule
EOT