{ %NORUN }{ this tests that helpers can introduce class methods for classes - mode
ObjFPC }
program tchlp4;{$ifdef fpc}{$mode delphi}{$endif}
type
TTest =classend;
TTestHelper =class helper for TTest
class procedure Test;end;class procedure TTestHelper.Test;beginend;begin
TTest.Test;end.