fpc/tests/webtbf/tw25622.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
403 B
ObjectPascal

{ %fail }
{$mode delphi}
program test;
type
TDynamicArray = array of record end; // or array of whatever
PDynamicArray = ^TDynamicArray;
function TestA(): Pointer;
begin
Result := nil;
end;
function TestB(): PDynamicArray;
begin
// can't take address of function return value, but compiler instead says "Internal error 2006111510"
Result := @TDynamicArray(TestA());
end;
begin
end.