diff options
Diffstat (limited to 'testsuite/gna/bug093/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug093/repro.vhdl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/bug093/repro.vhdl b/testsuite/gna/bug093/repro.vhdl new file mode 100644 index 000000000..14ec21d2a --- /dev/null +++ b/testsuite/gna/bug093/repro.vhdl @@ -0,0 +1,10 @@ +entity repro is +end repro; + +architecture behav of repro is + constant a : boolean := True; + constant b : boolean := False; + constant c : boolean := False; +begin + assert (a and b) = c severity failure; +end behav; |