{$reference 'System.Windows.Forms.dll'}
{$reference 'System.Drawing.dll'}
uses System, System.Windows.Forms;
type TForm = class(Form)
constructor Create(i : integer);
begin
inherited;
end;
Application.Run(new Form);
end.