mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-24 07:43:33 +02:00
25 lines
247 B
ObjectPascal
25 lines
247 B
ObjectPascal
{ %version=1.1 }
|
|
|
|
{$ifdef fpc}
|
|
{$ifdef unix}
|
|
uses
|
|
cwstring;
|
|
{$endif}
|
|
{$endif}
|
|
|
|
type
|
|
RR = record
|
|
RA : WideString;
|
|
end;
|
|
|
|
const
|
|
Z : RR = (RA: 'B');
|
|
|
|
begin
|
|
if z.ra<>'B' then
|
|
begin
|
|
writeln('error');
|
|
halt(1);
|
|
end;
|
|
end.
|