aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1667/repro.vhdl
blob: deb17a8508dfad7ceedbb7a2a65cfa9ee9d8e7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
entity repro is
end;

architecture behav of repro is
  type string_vector is array (natural range <>) of string;

  type tokenized_line is record
	op: 	string;
	params: string_vector;
  end record;

  constant k : tokenized_line := ("", ("", ""));
begin
end;