* Change test to test resourcestring correctness.

git-svn-id: trunk@5645 -
This commit is contained in:
daniel 2006-12-19 08:58:01 +00:00
parent d5cf9af69f
commit 787ed7e230

View File

@ -1,8 +1,17 @@
{$mode fpc}
{ Resourcestrings are pre-initialized }
resourcestring
s = 'OK';
var t:ansistring;
begin
writeln(s);
t:=s;
if t<>'OK' then
begin
writeln('Resourcestring error!');
halt(1);
end
else
writeln(s);
end.