mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 14:49:10 +02:00
* new bug
This commit is contained in:
parent
0a1c6b36a4
commit
bbc3aed3b2
25
tests/webtbs/tw3457.pp
Normal file
25
tests/webtbs/tw3457.pp
Normal file
@ -0,0 +1,25 @@
|
||||
{ Source provided for Free Pascal Bug Report 3457 }
|
||||
{ Submitted by "Ales Katona (Almindor)" on 2004-12-19 }
|
||||
{ e-mail: ales@chello.sk }
|
||||
|
||||
{$mode objfpc}
|
||||
{$inline on}
|
||||
|
||||
type TTest = class
|
||||
private
|
||||
procedure testit; inline;
|
||||
public // error is reported here
|
||||
constructor Create;
|
||||
end;
|
||||
|
||||
procedure TTest.testit; inline;
|
||||
begin
|
||||
end;
|
||||
|
||||
constructor TTest.Create;
|
||||
begin
|
||||
end;
|
||||
|
||||
begin
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user