mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
* added test for Mantis #36014 which is already fixed (also in 3.2.0)
git-svn-id: trunk@46219 -
This commit is contained in:
parent
8770af84bd
commit
055cfc1771
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -16519,6 +16519,7 @@ tests/webtbf/tw3583.pp svneol=native#text/plain
|
||||
tests/webtbf/tw35866.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw35909.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw35981.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw36014.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw36114.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw36223.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw3626.pp svneol=native#text/plain
|
||||
|
30
tests/webtbf/tw36014.pp
Normal file
30
tests/webtbf/tw36014.pp
Normal file
@ -0,0 +1,30 @@
|
||||
{ %FAIL }
|
||||
|
||||
program tw36014;
|
||||
|
||||
{$mode objfpc}
|
||||
|
||||
type
|
||||
|
||||
{ TTest }
|
||||
|
||||
TTest = class
|
||||
public
|
||||
procedure Test;
|
||||
end;
|
||||
var
|
||||
T: TTest;
|
||||
|
||||
{ TTest }
|
||||
|
||||
procedure TTest.Test;
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
begin
|
||||
T := TTest.Create;
|
||||
T.specialize Test<T>;
|
||||
T.Free;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user