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