* add test for wrong code that should generate an error

git-svn-id: trunk@7113 -
This commit is contained in:
pierre 2007-04-16 09:35:47 +00:00
parent b6b3a6cdff
commit d7e6f9f701
3 changed files with 20 additions and 0 deletions

2
.gitattributes vendored
View File

@ -5746,6 +5746,8 @@ tests/tbf/tb0195.pp svneol=native#text/plain
tests/tbf/tb0196.pp svneol=native#text/plain
tests/tbf/tb0197.pp svneol=native#text/plain
tests/tbf/tb0198.pp svneol=native#text/plain
tests/tbf/tb0199.pp -text
tests/tbf/tb0199a.pp -text
tests/tbf/ub0115.pp svneol=native#text/plain
tests/tbf/ub0149.pp svneol=native#text/plain
tests/tbf/ub0158a.pp svneol=native#text/plain

9
tests/tbf/tb0199.pp Normal file
View File

@ -0,0 +1,9 @@
{%NORUN}
{%FAIL}
type
test = record
f3,,,f5,,, : Boolean;
end;
begin
end.

9
tests/tbf/tb0199a.pp Normal file
View File

@ -0,0 +1,9 @@
{%NORUN}
{%FAIL}
type
test = record
f3,f5, : Boolean;
end;
begin
end.