mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:08:08 +02:00
+ add test for Mantis #23702, just to be sure that we don't re-add that already solved problem
git-svn-id: trunk@35335 -
This commit is contained in:
parent
969e19ba1a
commit
4742e826f6
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -13751,6 +13751,7 @@ tests/webtbf/tw23571b.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw23571c.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw2359.pp svneol=native#text/plain
|
||||
tests/webtbf/tw2362.pp svneol=native#text/plain
|
||||
tests/webtbf/tw23702.pp svneol=native#text/pascal
|
||||
tests/webtbf/tw2383.pp svneol=native#text/plain
|
||||
tests/webtbf/tw2400.pp svneol=native#text/plain
|
||||
tests/webtbf/tw24013.pp svneol=native#text/plain
|
||||
|
24
tests/webtbf/tw23702.pp
Normal file
24
tests/webtbf/tw23702.pp
Normal file
@ -0,0 +1,24 @@
|
||||
{ %FAIL }
|
||||
|
||||
{$mode objfpc}
|
||||
unit tw23702;
|
||||
{ Unit to demonstrate that free pascal does not complain
|
||||
when generic types promise to implement an interface but
|
||||
then do not. }
|
||||
interface
|
||||
|
||||
type
|
||||
IFoo = interface
|
||||
function foo : byte;
|
||||
end;
|
||||
|
||||
generic GBar<t> = class( TInterfacedObject, IFoo )
|
||||
// does not implement foo, but compiler doesn't care.
|
||||
end;
|
||||
|
||||
{TBar = class( TInterfacedObject, IFoo )
|
||||
// does not implement foo, and compiler complains
|
||||
end;}
|
||||
|
||||
implementation
|
||||
end.
|
Loading…
Reference in New Issue
Block a user