Sign in
foss-fpga-tools
/
third_party
/
verible
/
7ef4fe45b18f3999c48af7db0b868d6fca18f025
/
.
/
verilog
/
tools
/
lint
/
testdata
/
suspicious_semicolon.sv
blob: 45697b1ffef23d0bd0d751fc8778065ae4358201 [
file
] [
log
] [
blame
]
module
suspicious_semicolon
();
initial
begin
// verilog_lint: waive explicit-begin
if
(
x
);
$display
(
"Hi"
);
end
endmodule