diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-08 18:44:34 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-08 18:44:34 +0200 |
commit | 7119ed0eee11707dcfc6ab023fdf1f72783b35bd (patch) | |
tree | cdf72b5d0538f186d391e6cdd852c4f2d0859b9e /testsuite/synth/dispvhdl01/pkg.vhdl | |
parent | 0a3ca95575c7c5d3c153ec2de271613c228124a8 (diff) | |
download | ghdl-7119ed0eee11707dcfc6ab023fdf1f72783b35bd.tar.gz ghdl-7119ed0eee11707dcfc6ab023fdf1f72783b35bd.tar.bz2 ghdl-7119ed0eee11707dcfc6ab023fdf1f72783b35bd.zip |
testsuite/synth: add a test.
Diffstat (limited to 'testsuite/synth/dispvhdl01/pkg.vhdl')
-rw-r--r-- | testsuite/synth/dispvhdl01/pkg.vhdl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/synth/dispvhdl01/pkg.vhdl b/testsuite/synth/dispvhdl01/pkg.vhdl new file mode 100644 index 000000000..592226f79 --- /dev/null +++ b/testsuite/synth/dispvhdl01/pkg.vhdl @@ -0,0 +1,8 @@ +library ieee; +use ieee.std_logic_1164.all; + +package pkg is + type myrec is record + b : std_logic; + end record; +end pkg; |