mirror of https://github.com/YosysHQ/yosys.git
verilog: test cases that look like SVA labels #862
This commit is contained in:
parent
c30fd46ea3
commit
62120bda06
|
|
@ -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
|
||||
Loading…
Reference in New Issue