blob: bae04dad6560b2479f20dd9e349bc8874fd68c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
entity ent is
end entity;
architecture a of ent is
function fun(s : string) return integer is
begin
return 0;
end;
begin
main : process
begin
assert fun(s(4 to 15) => "Hello world!") = 0;
wait;
end process;
end architecture;
|