mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 03:47:59 +02:00
17 lines
314 B
ObjectPascal
17 lines
314 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3353 }
|
|
{ Submitted by "Vincent Snijders" on 2004-10-11 }
|
|
{ e-mail: vslist@zonnet.nl }
|
|
uses uw3353;
|
|
|
|
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
var
|
|
gfx: TGPGraphics;
|
|
a: integer;
|
|
begin
|
|
err:=true;
|
|
gfx := TGPGraphics.Create(a);
|
|
if err then
|
|
halt(1);
|
|
end.
|