Sign in
foss-fpga-tools
/
third_party
/
verible
/
c428b43c153fa0708394d76824d00a0e94801683
/
.
/
verilog
/
tools
/
lint
/
testdata
/
mismatched_labels.sv
blob: b786fe7b67a9ffa9079b5d703767d32ed5f71c33 [
file
] [
log
] [
blame
]
module
mismatched_labels
(
input clk_i
);
always_ff
@(
posedge clk_i
)
begin
:
foo
end
:
bar
// This mismatched label should cause an error
endmodule
;