mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
11 lines
178 B
ObjectPascal
11 lines
178 B
ObjectPascal
{ Old file: tbs0031.pp }
|
|
{ tests array[boolean] of .... OK 0.9.8 }
|
|
|
|
var
|
|
a : array[boolean] of longint;
|
|
|
|
begin
|
|
a[true]:=1234;
|
|
a[false]:=123;
|
|
end.
|