pascalabcnet/TestSuite/errors/err0166.pas

15 lines
238 B
ObjectPascal
Raw Permalink Normal View History

2017-05-25 12:44:01 +03:00
{$reference 'System.Windows.Forms.dll'}
{$reference 'System.Drawing.dll'}
2015-05-14 22:35:07 +03:00
uses System, System.Windows.Forms;
type TForm = class(Form)
constructor Create(i : integer);
begin
inherited;
end;
end;
begin
Application.Run(new Form);
end.