Prechádzať zdrojové kódy

Merged revisions 11463 via svnmerge from
svn+ssh://[email protected]/FPC/svn/fpc/trunk

........
r11463 | jonas | 2008-07-27 11:17:54 +0200 (Sun, 27 Jul 2008) | 2 lines

+ added test

........

git-svn-id: branches/fixes_2_2@11465 -

Jonas Maebe 17 rokov pred
rodič
commit
26b9e9558c
2 zmenil súbory, kde vykonal 14 pridanie a 0 odobranie
  1. 1 0
      .gitattributes
  2. 13 0
      tests/webtbs/tw11619.pp

+ 1 - 0
.gitattributes

@@ -8026,6 +8026,7 @@ tests/webtbs/tw11354.pp svneol=native#text/plain
 tests/webtbs/tw1152.pp svneol=native#text/plain
 tests/webtbs/tw1157.pp svneol=native#text/plain
 tests/webtbs/tw1157b.pp svneol=native#text/plain
+tests/webtbs/tw11619.pp svneol=native#text/plain
 tests/webtbs/tw1181.pp svneol=native#text/plain
 tests/webtbs/tw1203.pp svneol=native#text/plain
 tests/webtbs/tw1204.pp svneol=native#text/plain

+ 13 - 0
tests/webtbs/tw11619.pp

@@ -0,0 +1,13 @@
+{ %norun }
+
+program TEST;
+{$EXTENDEDSYNTAX OFF}
+USES
+  DOS;
+VAR
+  IO: WORD; { or LONGINT if wanted }
+BEGIN
+  IO:=IORESULT;
+END.
+
+