https://issues.dlang.org/show_bug.cgi?id=15970
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #3 from Walter Bright <[email protected]> --- In C++, class types are not reference types. In D they are, and D represents the reference type as a pointer type when translating to C++. The result is what you see, Symbol* instead of Symbol when looking at the C++ mangling. This is working as intended. --
