소스 검색

+ added

git-svn-id: trunk@2843 -
Jonas Maebe 19 년 전
부모
커밋
52d95a8abc
2개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitattributes
  2. 13 0
      tests/test/cg/tformfnc.pp

+ 1 - 0
.gitattributes

@@ -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 - 0
tests/test/cg/tformfnc.pp

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