aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue547/ghdl-bug.vhdl
blob: 652d6f5315357aa3851bc0e73a53d9d134671242 (plain)
1
2
3
4
5
6
7
8
9
10
11
library ieee;
use ieee.std_logic_1164.all;

package ghdl_bug is

type uncon_rec_t is record
	slv : std_logic_vector;
end record;
type uncon_rec_arr_t is array (0 to 1) of uncon_rec_t;

end ghdl_bug;