git-svn-id: trunk@2843 -
This commit is contained in:
Jonas Maebe 2006-03-10 20:59:45 +00:00
parent 5f801f2b42
commit 52d95a8abc
2 changed files with 14 additions and 0 deletions

1
.gitattributes vendored
View File

@ -5538,6 +5538,7 @@ tests/test/cg/tdivz1.pp svneol=native#text/plain
tests/test/cg/tdivz2.pp svneol=native#text/plain
tests/test/cg/texit.pp svneol=native#text/plain
tests/test/cg/tfor.pp svneol=native#text/plain
tests/test/cg/tformfnc.pp -text
tests/test/cg/tfuncret.pp svneol=native#text/plain
tests/test/cg/tin.pp svneol=native#text/plain
tests/test/cg/tincexc.pp svneol=native#text/plain

13
tests/test/cg/tformfnc.pp Normal file
View File

@ -0,0 +1,13 @@
function f: longint;
begin
f := 1;
end;
procedure t(const c);
begin
end;
begin
t(f);
end.