no message

This commit is contained in:
florian 2003-11-08 08:55:10 +00:00
parent 1124bd2690
commit 621b93dee1

16
tests/tbs/tb0462.pp Normal file
View File

@ -0,0 +1,16 @@
{ %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.