aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1196/my_pkg.vhdl
blob: 864c485c439e516ba76af204d8cd4c8d2552a832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
library ieee;
  use ieee.std_logic_1164.all;
  use ieee.numeric_std.all;

package my_pkg is

  type t_frame_x record is
    a : std_logic_vector(1 downto 0);
    b : std_logic_vector(17 downto 0);
  end record t_frame_x;

end package my_pkg;