aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1768/repro3.vhdl
blob: 7c64f4c67a6047eaa6834158592568a9e88237dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package repro3 is
  constant bv : bit_vector := "1010011";
  function f (vec : bit_vector := bv (0 to 3)) return bit;
end repro3;

package body repro3 is
  function f (vec : bit_vector := bv (0 to 3)) return bit is
  begin
    return '1';
  end f;
end repro3;