mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00

* Modify treadonlydata.pp to not use dynamic array. + Add test treadonlydata2.pp that should fail at compile time. git-svn-id: trunk@42752 -
27 lines
425 B
ObjectPascal
27 lines
425 B
ObjectPascal
{%FAIL }
|
|
|
|
program treadonlydata2;
|
|
|
|
{$if defined(msdos) or defined(hasamiga) or defined(atari) or defined(palmos)}
|
|
{$define target_does_not_support_rodata}
|
|
{$ekse}
|
|
{$define target_supports_rodata}
|
|
{$endif}
|
|
|
|
{$mode objfpc}
|
|
{$J-}
|
|
const
|
|
c = 89;
|
|
rc: LongInt = 5;
|
|
var
|
|
p : pbyte;
|
|
|
|
begin
|
|
{$ifndef target_does_not_support_rodata}
|
|
rc := 42;
|
|
{$else}
|
|
{ dummy code to also get a compile time error }
|
|
p:=@c;
|
|
{$endif}
|
|
end.
|