Sign in
foss-fpga-tools
/
third_party
/
verible
/
7ef4fe45b18f3999c48af7db0b868d6fca18f025
/
.
/
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
;