fpc/tests/webtbs/uw21808b.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 #21808)

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

23 lines
181 B
ObjectPascal

{$mode objfpc}
unit uw21808b;
interface
uses
uw21808a;
type
TH = class helper for TC
procedure Q;
end;
implementation
procedure TH.Q;
begin
Writeln(2);
end;
end.