mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 22:47:54 +02:00
* tw9176a should fail, moved to webtbf and added { %fail }
+ added tw9176 which should succeed git-svn-id: trunk@10924 -
This commit is contained in:
parent
02e6029ba1
commit
b31a502e6e
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -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
|
||||
|
@ -1,4 +1,8 @@
|
||||
{ %fail }
|
||||
|
||||
{$ifdef fpc}
|
||||
{$mode delphi}
|
||||
{$endif}
|
||||
|
||||
type TBla=class
|
||||
bla : integer;
|
24
tests/webtbs/tw9176.pp
Normal file
24
tests/webtbs/tw9176.pp
Normal 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.
|
||||
|
Loading…
Reference in New Issue
Block a user