mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 02:28:14 +02:00
14 lines
194 B
ObjectPascal
14 lines
194 B
ObjectPascal
{ Old file: tbs0190.pp }
|
|
{ can't have typecast for var params ?? OK 0.99.11 (PM) }
|
|
|
|
procedure a(var b: boolean);
|
|
begin
|
|
b:=true;
|
|
end;
|
|
|
|
var C: byte;
|
|
|
|
begin
|
|
a(boolean(c));
|
|
end.
|