aboutsummaryrefslogtreecommitdiffstats
path: root/tests/verilog/block_end_label_wrong.ys
diff options
context:
space:
mode:
Diffstat (limited to 'tests/verilog/block_end_label_wrong.ys')
-rw-r--r--tests/verilog/block_end_label_wrong.ys9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/verilog/block_end_label_wrong.ys b/tests/verilog/block_end_label_wrong.ys
new file mode 100644
index 000000000..47dbbe32f
--- /dev/null
+++ b/tests/verilog/block_end_label_wrong.ys
@@ -0,0 +1,9 @@
+logger -expect error "Begin label \(correct_name\) and end label \(incorrect_name\) don't match\." 1
+read_verilog -sv <<EOF
+module top;
+initial
+ begin : correct_name
+ $display("HI");
+ end : incorrect_name
+endmodule
+EOF