fpc/tests/tbs/tb0462.pp
Jonas Maebe ce94d89bd9 + added cwstring unit for unix
git-svn-id: trunk@7679 -
2007-06-16 09:13:01 +00:00

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.