mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 07:59:27 +02:00
* new bug
This commit is contained in:
parent
30a74b36f2
commit
3e029da60d
25
tests/webtbs/tw3356.pp
Normal file
25
tests/webtbs/tw3356.pp
Normal 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
21
tests/webtbs/uw3356.pp
Normal 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.
|
||||
|
Loading…
Reference in New Issue
Block a user