[Issue 13174] New: shared ~this() conflicts with this()
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Sun Jul 20 18:08:26 PDT 2014
https://issues.dlang.org/show_bug.cgi?id=13174
Issue ID: 13174
Summary: shared ~this() conflicts with this()
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: critical
Priority: P1
Component: DMD
Assignee: nobody at puremagic.com
Reporter: vlevenfeld at gmail.com
I am unable to define a destructor in a struct which may or may not be shared.
Possible duplicate of issue #12004, because if Macro's suggestion were
followed, it would solve the problem for my use case.
struct Foo
{
~this () {}
}
struct Bar
{
shared ~this () {}
}
struct Baz
{
~this () {}
shared ~this () {} // source/main.d(44): Error: destructor main.Baz.~this
conflicts with destructor main.Baz.~this at source/main.d(43)
}
void main ()
{
Foo foo;
shared Bar bar;
shared Foo s_foo; // source/main.d(51): Error: non-shared method
main.Foo.~this is not callable using a shared object
Bar n_bar; // source/main.d(52): Error: shared method main.Bar.~this is not
callable using a non-shared object
}
--
More information about the Digitalmars-d-bugs
mailing list