mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 22:48:00 +02:00
12 lines
126 B
ObjectPascal
12 lines
126 B
ObjectPascal
{ %version=1.1 }
|
|
{ %FAIL }
|
|
|
|
{ in this mode, typed constants are read-only }
|
|
{$J-}
|
|
const
|
|
w1 : word = 1;
|
|
|
|
begin
|
|
w1:=2;
|
|
end.
|