Sign in
foss-fpga-tools
/
third_party
/
verible
/
0ad00f0b2a11ef48b7dba9a85905e4f4e7a91c88
/
.
/
verilog
/
tools
/
lint
/
testdata
/
case_missing_default.sv
blob: a970ee40def65742e38acb03026e9a7ec5d6111f [
file
] [
log
] [
blame
]
// This case statement is missing a default case
function
automatic
int
foo
(
input bit
in
);
case
(
in
)
1
:
return
0
;
endcase
endfunction