mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 14:31:59 +02:00
17 lines
271 B
ObjectPascal
17 lines
271 B
ObjectPascal
program test;
|
|
|
|
uses sysutils;
|
|
|
|
var
|
|
a : array [Boolean,Boolean] of string;
|
|
b : wordbool;
|
|
begin
|
|
a[False,True] := 'True';
|
|
a[False,False] := 'False';
|
|
a[True,True] := 'True';
|
|
a[True,False] := 'False';
|
|
b := True;
|
|
if a[false,b]<>'True' then
|
|
halt(1);
|
|
end.
|