summaryrefslogtreecommitdiff
path: root/testsuite/gna/ticket94/apkg.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/ticket94/apkg.vhd')
-rw-r--r--testsuite/gna/ticket94/apkg.vhd10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/ticket94/apkg.vhd b/testsuite/gna/ticket94/apkg.vhd
new file mode 100644
index 0000000..09eba95
--- /dev/null
+++ b/testsuite/gna/ticket94/apkg.vhd
@@ -0,0 +1,10 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+package apkg is
+
+ component acomp is
+ port (x: in std_ulogic; y: out std_ulogic);
+ end component;
+
+end apkg;