fpc/tests/test/treadonlydata2.pp
pierre e45ad64d41 * Revert changes to tarray15.pp
* Modify treadonlydata.pp to not use dynamic array.
   + Add test treadonlydata2.pp that should fail at compile time.

git-svn-id: trunk@42752 -
2019-08-21 07:23:51 +00:00

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.