summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test22635.d
blob: c2abc8379563faeb36813e3efb88edbc0fecdf7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// https://issues.dlang.org/show_bug.cgi?id=22635
// opCast prevent calling destructor for const this

struct Foo
{
    bool opCast(T : bool)() const { assert(0); }
    ~this() {}
}

struct Bar
{
    const Foo foo;
}