aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket56/bug.vhdl
blob: 43b3ab06aa065f939876c45d01c8f672e0172a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
entity test is
end entity;

architecture a of test is
  function fun(var : boolean) return boolean is
  begin
    return var;
  end function;
begin
  main : process
    constant c : boolean := fun;
  begin
    wait;
  end process;
end architecture;