diff options
Diffstat (limited to 'testsuite/gna/bug037/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug037/repro.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/bug037/repro.vhdl b/testsuite/gna/bug037/repro.vhdl new file mode 100644 index 0000000..49e80dd --- /dev/null +++ b/testsuite/gna/bug037/repro.vhdl @@ -0,0 +1,14 @@ +entity repro is +end; + +architecture behav of repro is + subtype byte is bit_vector (7 downto 0); + type byte_array is array (1 to 10, boolean, 'a' to 'c') of byte; + + signal s : byte_array; +begin + process + begin + wait; + end process; +end behav; |