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

--- Comment #4 from Vladimir Panteleev <[email protected]> ---
It's easy enough to test!

$ cat test.d 
pragma(mangle, "CeciNestPasUnS")
struct S { }

extern(C++) void fun(S* s);

pragma(msg, fun.mangleof);

$ dmd -o- test.d
_Z3funP1S

Looks like pragma(mangle) has no effect on structs so far.

--

Reply via email to