aboutsummaryrefslogtreecommitdiffstats
path: root/tests/verilog/conflict_assert.ys
diff options
context:
space:
mode:
Diffstat (limited to 'tests/verilog/conflict_assert.ys')
-rw-r--r--tests/verilog/conflict_assert.ys8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/verilog/conflict_assert.ys b/tests/verilog/conflict_assert.ys
new file mode 100644
index 000000000..121a0cf51
--- /dev/null
+++ b/tests/verilog/conflict_assert.ys
@@ -0,0 +1,8 @@
+logger -expect error "Cannot add procedural assertion `\\x' because a signal with the same name was already created" 1
+read_verilog -sv <<EOT
+module top;
+ wire x, y;
+ always @*
+ x: assert(y == 1);
+endmodule
+EOT