fpc/tests/tbf/tb0053.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

40 lines
700 B
ObjectPascal

{ %FAIL }
{ Old file: tbf0272.pp }
{ No error issued if wrong parameter in function inside a second function OK 0.99.13 (PFV) }
program test_const_string;
const
conststring = 'Constant string';
function astring(s :string) : string;
begin
astring:='Test string'+s;
end;
procedure testvar(var s : string);
begin
writeln('testvar s is "',s,'"');
end;
procedure testconst(const s : string);
begin
writeln('testconst s is "',s,'"');
end;
procedure testvalue(s : string);
begin
writeln('testvalue s is "',s,'"');
end;
const
s : string = 'test';
begin
testvalue(astring('e'));
testconst(astring(s));
testconst(conststring);
testvar(conststring);{ refused a compile time }
end.