mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 06:29:32 +02:00
+ tests forgotten to commit as part of r13334
git-svn-id: trunk@13617 -
This commit is contained in:
parent
1b6657cf21
commit
ae6200ce72
6
.gitattributes
vendored
6
.gitattributes
vendored
@ -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
19
tests/webtbf/tw13971a.pp
Normal 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
19
tests/webtbf/tw13971b.pp
Normal 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
19
tests/webtbf/tw13971c.pp
Normal 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
18
tests/webtbf/tw13971d.pp
Normal 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
18
tests/webtbf/tw13971e.pp
Normal 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
18
tests/webtbf/tw13971f.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user