* test for auto derefencing

This commit is contained in:
peter 2001-05-19 12:11:42 +00:00
parent 9f15f8638b
commit fc88544de0

22
tests/tbs/tb0355.pp Normal file
View File

@ -0,0 +1,22 @@
{$mode delphi}
const
CSV_Internal = 10;
type
PTypeRec = ^TTypeRec;
TTypeRec = record
atypeid: Word;
end;
function ChangeType(newtype: PTypeRec): Pointer;
begin
if NewType.AtypeID = CSV_Internal then
begin
end;
end;
begin
end.