aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0108/pkg.vhdl
blob: b6321ba67ee6d7510a0c565ea610bea56a7dd811 (plain)
1
2
3
4
5
6
7
8
9
10
11
package name1 is
  constant c : natural := 4;
  function get_c return natural;
end name1;

package body name1 is
  function get_c return natural is
  begin
     return c;
  end get_c;
end name1;