fpc/tests/webtbs/tw3492.pp
2006-12-19 08:58:01 +00:00

18 lines
193 B
ObjectPascal

{$mode fpc}
resourcestring
s = 'OK';
var t:ansistring;
begin
t:=s;
if t<>'OK' then
begin
writeln('Resourcestring error!');
halt(1);
end
else
writeln(s);
end.