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