aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/synth47/test3.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/synth47/test3.vhdl')
-rw-r--r--testsuite/synth/synth47/test3.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/synth/synth47/test3.vhdl b/testsuite/synth/synth47/test3.vhdl
new file mode 100644
index 000000000..705a6fa21
--- /dev/null
+++ b/testsuite/synth/synth47/test3.vhdl
@@ -0,0 +1,12 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity test3 is
+ port (val : out std_logic_vector (7 downto 0));
+end entity test3;
+
+architecture beh of test3 is
+begin
+
+ val <= "Z001101X";
+end architecture beh;