Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00862
/
top.v
blob: 60063f2136205bfd20c904798362bf81b9b0e30e [
file
]
module
test
(
input wire A
);
localparam TEST
=
1
;
always_comb
begin
case
(
A
)
TEST
:
assert
(
1
);
endcase
end
endmodule