diff options
author | Tristan Gingold | 2015-05-19 05:49:20 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-05-19 05:49:20 +0200 |
commit | 94c26e359a1f4b10ce09e0a103fff61211c033ab (patch) | |
tree | c40b5163d38efb1d22cf8e2de1aa406bf4164873 /testsuite/gna/ticket68/bug.vhdl | |
parent | b764f19e60412f36e792dbb10ea985136e1bb236 (diff) | |
download | ghdl-94c26e359a1f4b10ce09e0a103fff61211c033ab.tar.gz ghdl-94c26e359a1f4b10ce09e0a103fff61211c033ab.tar.bz2 ghdl-94c26e359a1f4b10ce09e0a103fff61211c033ab.zip |
Testcase for ticket68
Diffstat (limited to 'testsuite/gna/ticket68/bug.vhdl')
-rw-r--r-- | testsuite/gna/ticket68/bug.vhdl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/gna/ticket68/bug.vhdl b/testsuite/gna/ticket68/bug.vhdl new file mode 100644 index 0000000..7ded836 --- /dev/null +++ b/testsuite/gna/ticket68/bug.vhdl @@ -0,0 +1,28 @@ +entity ent is +end entity; + +architecture a of ent is + type ivec is array (integer range -2 to 2) of integer; + + function fun1 return ivec is + begin + return (0,1,2,3,4); + end function; + + function fun2(arg : integer) return ivec is + begin + return (0,1,2,3,4); + end function; + +begin + main : process + begin + report integer'image(fun1'length); + report integer'image(fun2(2)'length); + report integer'image(fun1'left); + report integer'image(fun2(2)'left); + report integer'image(fun1'right); + report integer'image(fun2(2)'right); + wait; + end process; +end architecture; |