mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-06 20:23:18 +01:00
* added another dup id check
This commit is contained in:
parent
2689404afd
commit
b061f3bd69
@ -14,6 +14,26 @@ type
|
|||||||
procedure p2;
|
procedure p2;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
o = class
|
||||||
|
nonsense :string;
|
||||||
|
procedure flup(nonsense:string);
|
||||||
|
end;
|
||||||
|
|
||||||
|
o2 = class
|
||||||
|
nonsense :longint;
|
||||||
|
procedure flup(nonsense:longint);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure o.flup(nonsense:string);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
procedure o2.flup(nonsense:longint);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
procedure cl.p1;
|
procedure cl.p1;
|
||||||
var
|
var
|
||||||
k : longint;
|
k : longint;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user