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