{ %NORUN } unit tgenconst19; {$mode objfpc} interface generic procedure Test; generic procedure Test2; implementation { currently it does not matter whether , or ; is used in the definition (Delphi compatible) } generic procedure Test; begin end; generic procedure Test2; begin end; end.