diff options
Diffstat (limited to 'testsuite/gna/issue2031/entity.vhdl')
-rw-r--r-- | testsuite/gna/issue2031/entity.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue2031/entity.vhdl b/testsuite/gna/issue2031/entity.vhdl new file mode 100644 index 000000000..3af6aef9d --- /dev/null +++ b/testsuite/gna/issue2031/entity.vhdl @@ -0,0 +1,15 @@ +library IEEE; +use IEEE.std_logic_1164.all; + +entity abc is + port( + a : std_logic; + b : std_logic; + c : out std_logic + ); +end entity; + +architecture arch of abc is +begin + c <= a and b; +end architecture; |