fpc/tests/webtbs/tw39401.pp
florian a4672fbd1c o based on a patch by Rika, resolves #39401:
* use Base64 (62=_, 63=$) encoded FNV hash (instead of CR-32) to shorted identifiers
    * renamed fpccrc to fpchash
    + test
2021-10-10 10:09:22 +02:00

28 lines
653 B
ObjectPascal

{ %norun }
{$mode objfpc}
type
Collide29685295 = type uint32;
Collide32060020 = type uint32;
SomeType = class
type
SomeNestedType = class
type
YetAnotherNestedType = class
class procedure Hello(arg: YetAnotherNestedType; arg2: Collide29685295); static;
class procedure Hello(arg: YetAnotherNestedType; arg2: Collide32060020); static;
end;
end;
end;
class procedure SomeType.SomeNestedType.YetAnotherNestedType.Hello(arg: YetAnotherNestedType; arg2: Collide29685295);
begin
end;
class procedure SomeType.SomeNestedType.YetAnotherNestedType.Hello(arg: YetAnotherNestedType; arg2: Collide32060020);
begin
end;
begin
end.