DEBSOURCES
Skip Quicknav
sources / fpc / 2.6.4%2Bdfsg-4 / fpcsrc / tests / test / tconstref2.pp
123456789101112
{ %fail } program tConstRef2; procedure TestConstRef(constref AParam: integer); begin AParam := 5; end; begin TestConstRef(1); end.