You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extern(C++) class A : Object {}
void main()
{
import std.stdio;
auto a = new A();
writeln(a.toString()); // Crash
}
Noticed in https://github.com/dlang/druntime/pull/2318#issuecomment-426077283
The text was updated successfully, but these errors were encountered:
Nicholas Wilson (@thewilsonator) reported this on 2018-11-02T01:06:14Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=19347
Description
extern(C++) class A : Object {} void main() { import std.stdio; auto a = new A(); writeln(a.toString()); // Crash } Noticed in https://github.com/dlang/druntime/pull/2318#issuecomment-426077283The text was updated successfully, but these errors were encountered: