* new test

git-svn-id: trunk@6577 -
This commit is contained in:
florian 2007-02-20 19:24:40 +00:00
parent 6588b2cb57
commit 42da0e5688
2 changed files with 16 additions and 0 deletions

1
.gitattributes vendored
View File

@ -6235,6 +6235,7 @@ tests/tbs/tb0525.pp svneol=native#text/plain
tests/tbs/tb0526.pp -text
tests/tbs/tb0527.pp svneol=native#text/plain
tests/tbs/tb0528.pp svneol=native#text/x-pascal
tests/tbs/tb0530.pp svneol=native#text/plain
tests/tbs/ub0060.pp svneol=native#text/plain
tests/tbs/ub0069.pp svneol=native#text/plain
tests/tbs/ub0119.pp svneol=native#text/plain

15
tests/tbs/tb0530.pp Normal file
View File

@ -0,0 +1,15 @@
type
tset1 = set of 0..7;
tset2 = set of 0..15;
procedure p(s : tset1);overload;
begin
end;
procedure p(s : tset2);overload;
begin
end;
begin
end.