mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
15 lines
246 B
ObjectPascal
15 lines
246 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 4881 }
|
|
{ Submitted by "Jasper Neumann" on 2006-03-07 }
|
|
{ e-mail: _-jane-_@web.de }
|
|
type
|
|
openstring=integer;
|
|
|
|
procedure test(var x:openstring);
|
|
begin end;
|
|
|
|
var
|
|
x: openstring;
|
|
begin
|
|
test(x);
|
|
end.
|