[Issue 1687] "extern (C++) interface" and vtbl
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Nov 15 21:03:52 PST 2013
https://d.puremagic.com/issues/show_bug.cgi?id=1687
Andrei Alexandrescu <andrei at erdani.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |andrei at erdani.com
--- Comment #4 from Andrei Alexandrescu <andrei at erdani.com> 2013-11-15 21:03:49 PST ---
This segfaults:
extern (C++) interface A { void foo(); void bar(); }
extern (C++) class B : A { void foo() { } void bar() { } }
void main()
{
A a = new B;
a.foo();
}
It actually segfaults even without the interface and the call.
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list