blob: a80baa1d64873151d991adb06feee7f43ec7122b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity repro2 is
end;
architecture behav of repro2 is
type t_record is record
str : string;
num : positive;
end record;
constant k : t_record := ("abc", 1);
begin
end;
|