blob: 865eb5414c0485abf6173d12f32e90b2ad82ac93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity test is
end entity;
architecture arch of test is
-- This works:
--subtype y_vec is real_vector(0 to 3);
--type realvec_file is file of y_vec;
-- This complains bout 'index constraint not allowed here'
type realvec_file is file of real_vector(0 to 3);
begin
end arch;
|