diff options
Diffstat (limited to 'testsuite/gna/issue1631/bug.vhdl')
-rw-r--r-- | testsuite/gna/issue1631/bug.vhdl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/issue1631/bug.vhdl b/testsuite/gna/issue1631/bug.vhdl new file mode 100644 index 000000000..087a76505 --- /dev/null +++ b/testsuite/gna/issue1631/bug.vhdl @@ -0,0 +1,10 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity bug is +end bug; + +architecture behavior of bug is +begin + var1 : std_logic(1 downto 0); +end behavior; |