aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1419/repro3.vhdl
blob: 80854a2edb3d5e32559249c4d70a2d88926c68f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity repro3 is
end;

architecture behav of repro3 is
  type t_record is record
    str : string;
    num : positive;
  end record;

  constant k : t_record := ("abc", 0); --  BOUND error
begin
end;