blob: 6ed32650fd29344156cef4b43d75690bfd40bc98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
entity e5 is
end e5;
architecture behav of e5 is
type my_rec is record
b : boolean;
n : work.no_pkg.no_type;
end record;
constant cst : my_rec := (b => true, n => (others => true));
begin
end behav;
|