fpc/tests/test/tsymlibrary1.pp
florian 292b36205a -- Zusammenführen von r13892 in ».«:
A    tests/test/tsymlibrary1.pp
U    compiler/msgtxt.inc
U    compiler/msgidx.inc
U    compiler/htypechk.pas
U    compiler/msg/errore.msg

git-svn-id: trunk@13953 -
2009-10-25 08:58:22 +00:00

16 lines
210 B
ObjectPascal

{$ifdef fpc}
{$mode objfpc}
{$endif}
type
TSomething = class
public
class procedure DoSomething; library;
end;
class procedure TSomething.DoSomething;
begin
end;
begin
TSomething.DoSomething;
end.