Peter Vreman wrote:
Hi,
The following compiles with fpc 2.0.1, but not anymore with fpc 2.1.1.
Is it a bug in my code (and fpc 2.0.1) or in fpc 2.1.1?
program Project1;
{$mode objfpc}{$H+}
procedure test(l: longint);
begin
end;
begin
test(longint(''));
end.
You are dependning on the in
> Hi,
>
> The following compiles with fpc 2.0.1, but not anymore with fpc 2.1.1.
>
> Is it a bug in my code (and fpc 2.0.1) or in fpc 2.1.1?
>
> program Project1;
>
> {$mode objfpc}{$H+}
>
> procedure test(l: longint);
> begin
> end;
>
> begin
>test(longint(''));
> end.
You are dependning on t