[Issue 22341] importC: Error 'fun' called with argument types '(uint)' matches both: 'fun(ulong)' and 'fun(ulong)'

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Sep 28 17:02:48 UTC 2021


https://issues.dlang.org/show_bug.cgi?id=22341

--- Comment #1 from Iain Buclaw <ibuclaw at gdcproject.org> ---
Similarly, this triggers an error too.
---
extern void func(const char *str);

void func(const char *str)
{
}

void func2()
{
    func("test");
}

--


More information about the Digitalmars-d-bugs mailing list