diff options
Diffstat (limited to 'testsuite/gna/bug044/aggr1.vhdl')
-rw-r--r-- | testsuite/gna/bug044/aggr1.vhdl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/bug044/aggr1.vhdl b/testsuite/gna/bug044/aggr1.vhdl new file mode 100644 index 000000000..1027fe73a --- /dev/null +++ b/testsuite/gna/bug044/aggr1.vhdl @@ -0,0 +1,11 @@ +entity aggr1 is +end aggr1; + +architecture behav of aggr1 is + procedure proc (b, c : out bit_vector) is + begin + b := (others => '0'); + c := ('1', others => '0'); + end proc; +begin +end behav; |