fpc/tests/webtbf/tw25622a.pp
Jonas Maebe 89d97a3c2e * only consider tc_pointer_to_array typeconversions to determine whether a
pointer->array type conversion implies an implicit dereference operation
    (mantis #25622)

git-svn-id: trunk@26608 -
2014-01-28 20:14:24 +00:00

24 lines
357 B
ObjectPascal

{ %fail }
{$mode delphi}
program test;
type
PArray = ^TArray;
TArray = array[1..sizeof(ptrint)] of byte;
function TestA(): Pointer;
begin
Result := nil;
end;
function TestB(): PArray;
begin
// can't take address of function return value, but compiler instead says "Internal error 2006111510"
Result := @TArray(TestA());
end;
begin
end.