http://d.puremagic.com/issues/show_bug.cgi?id=10837
Summary: Extern as in-place linkage modifier
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Robert Luger <[email protected]> 2013-08-17 07:52:51
PDT ---
It's not possible to directly take an extern(C) function pointer as argument:
void receiveFunc(extern(C) void function() f); // error
extern(C) alias void function() Func;
void receiveFunc(Func f); // works
In my particular case it is problematic when I use
std.traits.fullyQualifiedName (for later use in a mixin) on a function type
which takes a C function, because it returns a string similar to the first
example.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------