mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:08:13 +02:00
12 lines
118 B
ObjectPascal
12 lines
118 B
ObjectPascal
{ %fail }
|
|
{ test c style assignment operators }
|
|
|
|
{$COPERATORS OFF}
|
|
|
|
var
|
|
i : Single;
|
|
begin
|
|
i:=1234;
|
|
i *= 2;
|
|
end.
|