* tw9176a should fail, moved to webtbf and added { %fail }

+ added tw9176 which should succeed

git-svn-id: trunk@10924 -
This commit is contained in:
Jonas Maebe 2008-05-09 21:01:41 +00:00
parent 02e6029ba1
commit b31a502e6e
3 changed files with 30 additions and 1 deletions

3
.gitattributes vendored
View File

@ -8005,6 +8005,7 @@ tests/webtbf/tw9039d.pp svneol=native#text/plain
tests/webtbf/tw9053.pp svneol=native#text/plain
tests/webtbf/tw9072a.pp svneol=native#text/plain
tests/webtbf/tw9072b.pp svneol=native#text/plain
tests/webtbf/tw9176a.pp svneol=native#text/plain
tests/webtbf/tw9225.pp svneol=native#text/plain
tests/webtbf/tw9306c.pp svneol=native#text/plain
tests/webtbf/tw9499.pp svneol=native#text/plain
@ -9053,7 +9054,7 @@ tests/webtbs/tw9161.pp svneol=native#text/plain
tests/webtbs/tw9162.pp svneol=native#text/plain
tests/webtbs/tw9167.pp svneol=native#text/plain
tests/webtbs/tw9174.pp svneol=native#text/plain
tests/webtbs/tw9176a.pp -text
tests/webtbs/tw9176.pp svneol=native#text/plain
tests/webtbs/tw9179.pp svneol=native#text/plain
tests/webtbs/tw9187.pp svneol=native#text/plain
tests/webtbs/tw9190.pp svneol=native#text/plain

View File

@ -1,4 +1,8 @@
{ %fail }
{$ifdef fpc}
{$mode delphi}
{$endif}
type TBla=class
bla : integer;

24
tests/webtbs/tw9176.pp Normal file
View File

@ -0,0 +1,24 @@
{$ifdef fpc}
{$mode delphi}
{$endif}
type TBla=class
procedure Bla;
procedure BlaBla;
end;
procedure TBla.Bla;
begin
end;
procedure TBla.BlaBla;
procedure Bla;
begin
end;
begin
Bla;
end;
begin
end.