mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00

+ -vm<x>,<y> parameter to mask messages <x> and <y> (both based on a patch submitted by Petr Kristan) * alphabetically ordered -v<x> option processing code so it's easier to see which characters are still free (not many anymore) + some tests for the -vm functionality git-svn-id: trunk@11888 -
11 lines
151 B
ObjectPascal
11 lines
151 B
ObjectPascal
{ %opt=-vh -vm05024 -Seh }
|
|
|
|
procedure test(l: longint);
|
|
begin
|
|
writeln('l is unused, but that hint has been suppressed');
|
|
end;
|
|
|
|
begin
|
|
test(5);
|
|
end.
|