diff options
Diffstat (limited to 'testsuite/gna/issue1274/issue93.vhdl')
-rw-r--r-- | testsuite/gna/issue1274/issue93.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/issue1274/issue93.vhdl b/testsuite/gna/issue1274/issue93.vhdl new file mode 100644 index 000000000..30e75bcd7 --- /dev/null +++ b/testsuite/gna/issue1274/issue93.vhdl @@ -0,0 +1,13 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity issue93 is + port (foo : out std_logic; + bar : out std_logic); +end ; + +architecture beh of issue93 is +begin + (foo, bar) <= "10" + "01"; -- crashes +end architecture; |