aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/dispin01/rec01.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/dispin01/rec01.vhdl')
-rw-r--r--testsuite/synth/dispin01/rec01.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/synth/dispin01/rec01.vhdl b/testsuite/synth/dispin01/rec01.vhdl
new file mode 100644
index 000000000..2d26098f8
--- /dev/null
+++ b/testsuite/synth/dispin01/rec01.vhdl
@@ -0,0 +1,13 @@
+library ieee;
+use ieee.std_logic_1164.all;
+use work.rec01_pkg.all;
+
+entity rec01 is
+ port (inp : myrec;
+ o : out std_logic);
+end rec01;
+
+architecture behav of rec01 is
+begin
+ o <= inp.a or inp.b;
+end behav;