aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue205/repro.vhdl
blob: d981e81d0eb4fa1872d7dc3a87730fd7401ecc14 (plain)
1
2
3
4
5
6
7
package SortListGenericPkg is
  generic (
    type ElementType;
    function "<"(L : ElementType; R : ElementType) return boolean;
    function "<="(L : ElementType; R : ElementType) return boolean
  );
end package;