fpc/tests/webtbs/uw21808a.pp
Jonas Maebe 572012fad3 * mark units as used in case only static symbols from inside object,
record or enum symtables are used (such as class helper methods)
    (mantis )

git-svn-id: trunk@21512 -
2012-06-06 20:16:50 +00:00

20 lines
149 B
ObjectPascal

{$mode objfpc}
unit uw21808a;
interface
type
TC = class
procedure P;
end;
implementation
procedure TC.P;
begin
Writeln(1);
end;
end.