Hi Folks!
The following program fails to compile:
program Foo;
var Integer: Integer = 2; Real: Integer = 3 ; { this works: Real, Integer: Integer = 3; }
begin Integer := Real; Real := Integer end.
Btw: using the decalaration as given in the comment works.
Eike