diff options
Diffstat (limited to 'testsuite/gna/issue241/rec.vhdl')
-rw-r--r-- | testsuite/gna/issue241/rec.vhdl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/gna/issue241/rec.vhdl b/testsuite/gna/issue241/rec.vhdl new file mode 100644 index 000000000..372f74469 --- /dev/null +++ b/testsuite/gna/issue241/rec.vhdl @@ -0,0 +1,21 @@ +entity rec is +end; + +architecture behav of rec is + type rec_type is record + a, b : natural; + end record; + + constant r1 : rec_type := (a | b => 2); + constant b : boolean := r1.a = r1.b; +begin + process + variable a : integer := 5; + begin + case a = 5 is + when b => null; + when false => null; + end case; + wait; + end process; +end behav; |