pascalabcnet/TestSuite/errors/err0166.pas
Бондарев Иван 32404786fb bug fix #403
2017-05-25 11:44:01 +02:00

15 lines
238 B
ObjectPascal

{$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;
end;
begin
Application.Run(new Form);
end.