mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
* new bug
This commit is contained in:
parent
3af83637d8
commit
3dbaecd320
31
tests/webtbs/tw3653.pp
Normal file
31
tests/webtbs/tw3653.pp
Normal file
@ -0,0 +1,31 @@
|
||||
{ Source provided for Free Pascal Bug Report 3653 }
|
||||
{ Submitted by "Marco" on 2005-02-14 }
|
||||
{ e-mail: }
|
||||
|
||||
{$ifdef fpc}
|
||||
{$mode delphi}
|
||||
{$else}
|
||||
type ptrint = integer;
|
||||
{$endif}
|
||||
|
||||
Type
|
||||
arrptr = array[0..maxint div 4-1] of pointer;
|
||||
arrint = array[0..maxint div 4-1] of integer;
|
||||
ppointer= ^arrptr;
|
||||
parrint = ^arrint;
|
||||
PLightSetElement = ^Pointer;
|
||||
TLightSet = Pointer;
|
||||
|
||||
dlightsetiterator = record
|
||||
next : PLightSetElement;
|
||||
end;
|
||||
|
||||
function lightstartiter(p:TLightSet):DLightSetIterator;
|
||||
|
||||
|
||||
begin
|
||||
result.next:=@ppointer(ptrint(p) and not 3)[0]; // on size.
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user