https://issues.dlang.org/show_bug.cgi?id=22263
Issue ID: 22263
Summary: importC Error: 'fun' called with argument types
'(int)' matches both: 'fun(int)' and 'fun(int);
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
Reduced test:
---
extern void test(int);
void test(int a)
{
}
int main()
{
test(42);
}
--
