aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2165/e.vhdl
blob: 1938ade32c55137781729c03f4aad4e8653d3475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity e is end; 
architecture a of e is

    -- Body mismatches declaration because 'arg' is not marked constant. 
    -- However constant is the default value when not specified
    function f1(constant arg : bit) return bit;
    function f1(         arg : bit) return bit
    is
    begin
        return '0';
    end;
begin 
end;