mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 09:42:36 +02:00
17 lines
183 B
ObjectPascal
17 lines
183 B
ObjectPascal
{ %version=1.1 }
|
|
type
|
|
RR = record
|
|
RA : WideString;
|
|
end;
|
|
|
|
const
|
|
Z : RR = (RA: 'B');
|
|
|
|
begin
|
|
if z.ra<>'B' then
|
|
begin
|
|
writeln('error');
|
|
halt(1);
|
|
end;
|
|
end.
|