diff options
Diffstat (limited to 'testsuite/gna/issue216/repro3.vhdl')
-rw-r--r-- | testsuite/gna/issue216/repro3.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/gna/issue216/repro3.vhdl b/testsuite/gna/issue216/repro3.vhdl new file mode 100644 index 000000000..59e1c8009 --- /dev/null +++ b/testsuite/gna/issue216/repro3.vhdl @@ -0,0 +1,9 @@ +entity repro3 is +end repro3; + +architecture behav of repro3 is + constant c : character := 'e'; + constant cond : boolean := c /= 'a'; +begin + assert cond; +end behav; |