aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket32/repro.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/ticket32/repro.vhdl')
-rw-r--r--testsuite/gna/ticket32/repro.vhdl10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/ticket32/repro.vhdl b/testsuite/gna/ticket32/repro.vhdl
new file mode 100644
index 000000000..277fa3f0c
--- /dev/null
+++ b/testsuite/gna/ticket32/repro.vhdl
@@ -0,0 +1,10 @@
+entity repro is
+end;
+
+architecture tb of repro is
+ signal x : bit_vector(1 downto 0);
+ signal y : bit;
+begin
+ assert (y = '1') = (x = "11");
+end tb;
+