mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:08:02 +02:00
12 lines
179 B
ObjectPascal
12 lines
179 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.
|
|
|