* new bug

This commit is contained in:
peter 2004-10-12 19:30:11 +00:00
parent 30a74b36f2
commit 3e029da60d
2 changed files with 46 additions and 0 deletions

25
tests/webtbs/tw3356.pp Normal file
View File

@ -0,0 +1,25 @@
{ Source provided for Free Pascal Bug Report 3356 }
{ Submitted by "Vincent Snijders" on 2004-10-12 }
{ e-mail: vslist@zonnet.nl }
program project1;
{$mode objfpc}
uses
uw3356;
type
TB = class(TA)
protected
procedure DoB;
end;
procedure TB.DoB;
var
FA: integer;
begin
end;
begin
end.

21
tests/webtbs/uw3356.pp Normal file
View File

@ -0,0 +1,21 @@
unit uw3356;
{$mode objfpc}{$H+}
interface
type
TA = class
private
procedure FA;
end;
implementation
procedure TA.FA;
begin
end;
end.