mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 04:48:07 +02:00
* new bugs
This commit is contained in:
parent
2531d36bff
commit
b5644bee5c
16
tests/webtbs/tw1364.pp
Normal file
16
tests/webtbs/tw1364.pp
Normal file
@ -0,0 +1,16 @@
|
||||
{$X-}
|
||||
|
||||
type
|
||||
o=object
|
||||
constructor init(s:string);
|
||||
end;
|
||||
|
||||
constructor o.init(s:string);
|
||||
begin
|
||||
end;
|
||||
|
||||
var
|
||||
s:o;
|
||||
begin
|
||||
s.init('test');
|
||||
end.
|
13
tests/webtbs/tw1376.pp
Normal file
13
tests/webtbs/tw1376.pp
Normal file
@ -0,0 +1,13 @@
|
||||
unit tw1376;
|
||||
|
||||
interface
|
||||
|
||||
procedure mumble (x:integer); pascal;
|
||||
|
||||
implementation
|
||||
|
||||
procedure mumble (x:integer); pascal;
|
||||
begin
|
||||
end;
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user