diff options
Diffstat (limited to 'testsuite/synth/issue1324/pkg.vhdl')
-rw-r--r-- | testsuite/synth/issue1324/pkg.vhdl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/synth/issue1324/pkg.vhdl b/testsuite/synth/issue1324/pkg.vhdl new file mode 100644 index 000000000..956882663 --- /dev/null +++ b/testsuite/synth/issue1324/pkg.vhdl @@ -0,0 +1,11 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +package pkg is + type bus_t is record + data : std_logic_vector; + valid : std_logic; + end record; + +end package pkg; |