mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:09:32 +02:00
+ test for previous commit
git-svn-id: trunk@40646 -
This commit is contained in:
parent
9c6838ecca
commit
acfa2088ef
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -12844,6 +12844,7 @@ tests/test/tasmpublic3.pp svneol=native#text/pascal
|
||||
tests/test/tasmread.pp svneol=native#text/plain
|
||||
tests/test/tasout.pp svneol=native#text/plain
|
||||
tests/test/tassignmentoperator1.pp svneol=native#text/pascal
|
||||
tests/test/tb0266.pp svneol=native#text/plain
|
||||
tests/test/tblock1.pp svneol=native#text/plain
|
||||
tests/test/tblock1a.pp svneol=native#text/plain
|
||||
tests/test/tblock1c.pp svneol=native#text/plain
|
||||
|
24
tests/test/tb0266.pp
Normal file
24
tests/test/tb0266.pp
Normal file
@ -0,0 +1,24 @@
|
||||
{ %fail }
|
||||
|
||||
{$mode objfpc}
|
||||
{$interfaces corba}
|
||||
|
||||
type
|
||||
tc = class
|
||||
strict private
|
||||
procedure test;
|
||||
end;
|
||||
|
||||
tintf = interface
|
||||
procedure test;
|
||||
end;
|
||||
|
||||
tc2 = class(tc, tintf)
|
||||
end;
|
||||
|
||||
procedure tc.test;
|
||||
begin
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
Loading…
Reference in New Issue
Block a user