mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:38:19 +02:00
Add test for bug report 40537
This commit is contained in:
parent
d621cef988
commit
8122defbd8
62
tests/webtbs/tw40537.pp
Normal file
62
tests/webtbs/tw40537.pp
Normal file
@ -0,0 +1,62 @@
|
||||
type
|
||||
{$ifdef USE_RECORD}
|
||||
trec = record
|
||||
y : longint;
|
||||
end;
|
||||
{$else}
|
||||
{$ifdef USE_PTRINT}
|
||||
trec = ptrint;
|
||||
{$else USE_PTRINT}
|
||||
trec = pointer;
|
||||
{$endif USE_PTRINT}
|
||||
{$endif}
|
||||
prec = ^trec;
|
||||
|
||||
const
|
||||
value_version_used : longint = 0;
|
||||
var_version_used : longint = 0;
|
||||
has_error : boolean = false;
|
||||
|
||||
function test(p : prec;l : longint; k: dword) : boolean; overload;
|
||||
begin
|
||||
test:=(p<>nil);
|
||||
inc(value_version_used);
|
||||
end;
|
||||
|
||||
function test(var p : trec;l : longint; k: dword) : boolean; overload;
|
||||
begin
|
||||
test:=(@p<>nil);
|
||||
inc(var_version_used);
|
||||
end;
|
||||
|
||||
var
|
||||
pt : trec;
|
||||
i : trec;
|
||||
|
||||
begin
|
||||
pt:=i;
|
||||
test(@pt,23,56);
|
||||
if (var_version_used>0) then
|
||||
begin
|
||||
writeln('call with @pt uses var version, which is wrong');
|
||||
has_error:=true;
|
||||
end
|
||||
else
|
||||
writeln('call with @pt uses value version');
|
||||
|
||||
var_version_used:=0;
|
||||
value_version_used:=0;
|
||||
|
||||
test(pt,678,567890);
|
||||
if (var_version_used>0) then
|
||||
writeln('direct call uses var version')
|
||||
else
|
||||
writeln('direct call uses value version');
|
||||
|
||||
if has_error then
|
||||
begin
|
||||
writeln('This test revealed a problem');
|
||||
halt(1);
|
||||
end;
|
||||
end.
|
||||
|
3
tests/webtbs/tw40537a.pp
Normal file
3
tests/webtbs/tw40537a.pp
Normal file
@ -0,0 +1,3 @@
|
||||
{$define USE_RECORD}
|
||||
{$i tw40537.pp}
|
||||
|
3
tests/webtbs/tw40537b.pp
Normal file
3
tests/webtbs/tw40537b.pp
Normal file
@ -0,0 +1,3 @@
|
||||
{$define USE_PTRINT}
|
||||
{$i tw40537.pp}
|
||||
|
Loading…
Reference in New Issue
Block a user