fpc/tests/webtbs/tw40598.pp
2024-01-26 21:43:18 +01:00

23 lines
287 B
ObjectPascal

{ %RESULT=202 }
{ %opt=gl }
{$mode objfpc}
type
TForm1 = class
procedure Button1Click(Sender: TObject);
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Button1Click(self);
end;
var
Form1 : TForm1;
begin
Form1:=TForm1.Create;
Form1.Button1Click(nil);
end.