+ tests forgotten to commit as part of r13334

git-svn-id: trunk@13617 -
This commit is contained in:
Jonas Maebe 2009-08-30 08:37:53 +00:00
parent 1b6657cf21
commit ae6200ce72
7 changed files with 117 additions and 0 deletions

6
.gitattributes vendored
View File

@ -8625,6 +8625,12 @@ tests/webtbf/tw1365.pp svneol=native#text/plain
tests/webtbf/tw13815.pp svneol=native#text/plain
tests/webtbf/tw1395.pp svneol=native#text/plain
tests/webtbf/tw13956.pp svneol=native#text/plain
tests/webtbf/tw13971a.pp svneol=native#text/plain
tests/webtbf/tw13971b.pp svneol=native#text/plain
tests/webtbf/tw13971c.pp svneol=native#text/plain
tests/webtbf/tw13971d.pp svneol=native#text/plain
tests/webtbf/tw13971e.pp svneol=native#text/plain
tests/webtbf/tw13971f.pp svneol=native#text/plain
tests/webtbf/tw13992.pp svneol=native#text/plain
tests/webtbf/tw1407.pp svneol=native#text/plain
tests/webtbf/tw14104a.pp svneol=native#text/plain

19
tests/webtbf/tw13971a.pp Normal file
View File

@ -0,0 +1,19 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
function getx(i: longint): longint;
property prop[i: longint]: longint read getx;
default: longint;
end;
function tc.getx(i: longint): longint;
begin
end;
begin
end.

19
tests/webtbf/tw13971b.pp Normal file
View File

@ -0,0 +1,19 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
constructor test;
a: longint;
end;
constructor tc.test;
begin
end;
begin
end.

19
tests/webtbf/tw13971c.pp Normal file
View File

@ -0,0 +1,19 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
procedure test;
register: longint;
end;
procedure tc.test;
begin
end;
begin
end.

18
tests/webtbf/tw13971d.pp Normal file
View File

@ -0,0 +1,18 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
function getx(i: longint): longint;
default: longint;
end;
function tc.getx(i: longint): longint;
begin
end;
begin
end.

18
tests/webtbf/tw13971e.pp Normal file
View File

@ -0,0 +1,18 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
constructor create;
a: longint;
end;
constructor tc.create;
begin
end;
begin
end.

18
tests/webtbf/tw13971f.pp Normal file
View File

@ -0,0 +1,18 @@
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
destructor destroy; override;
a: longint;
end;
destructor tc.destroy;
begin
end;
begin
end.