mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
13 lines
210 B
ObjectPascal
13 lines
210 B
ObjectPascal
{ %cpu=i386 }
|
|
{$mode objfpc}
|
|
{$OPTIMIZATION REGVAR}
|
|
{.$FPUTYPE SSE2} //uncommenting this resolves the problem
|
|
|
|
uses uw38069;
|
|
|
|
var z: complex;
|
|
n: integer;
|
|
begin
|
|
z := z*n; //internal error 200604201
|
|
end.
|