+ test for previous commit

git-svn-id: trunk@40646 -
This commit is contained in:
Jonas Maebe 2018-12-25 17:52:56 +00:00
parent 9c6838ecca
commit acfa2088ef
2 changed files with 25 additions and 0 deletions

1
.gitattributes vendored
View File

@ -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
View 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.