pascalabcnet/TestSamples/_SemErrorTests/err0166.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

15 lines
234 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.