summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug19195/pkg.vhd
diff options
context:
space:
mode:
authorTristan Gingold2013-12-18 05:53:22 +0100
committerTristan Gingold2013-12-18 05:53:22 +0100
commitbd4aff0f670351c0652cf24e9b04361dc0e3a01c (patch)
treeafcc1050ac74fc64b5756e2550bc32ea61d1e7bb /testsuite/gna/bug19195/pkg.vhd
parent5fde24d46fae799e6c0723850097a8fccd64d747 (diff)
downloadghdl-bd4aff0f670351c0652cf24e9b04361dc0e3a01c.tar.gz
ghdl-bd4aff0f670351c0652cf24e9b04361dc0e3a01c.tar.bz2
ghdl-bd4aff0f670351c0652cf24e9b04361dc0e3a01c.zip
Add initial testsuite, using regression tests from bugs or support
reported on gna.org
Diffstat (limited to 'testsuite/gna/bug19195/pkg.vhd')
-rw-r--r--testsuite/gna/bug19195/pkg.vhd13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug19195/pkg.vhd b/testsuite/gna/bug19195/pkg.vhd
new file mode 100644
index 0000000..4418e90
--- /dev/null
+++ b/testsuite/gna/bug19195/pkg.vhd
@@ -0,0 +1,13 @@
+library IEEE;
+use IEEE.std_logic_1164.all;
+package test_pkg is
+ type a is record
+ b : std_logic_vector(3 downto 0);
+ end record a;
+ type b is record
+ a1 : a;
+ end record b;
+
+ signal c : b;
+ alias c0 : a is c.a1;
+end package test_pkg;