aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.exceptions/static_dtor.d
blob: 7ad4c2a77f348ce12c3f2651d894c2d72b914475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-shouldfail "static_dtor_exception" }
// { dg-output "object.Exception@.*: static_dtor_exception" }
// https://issues.dlang.org/show_bug.cgi?id=16594
import core.stdc.stdio : fprintf, stderr;

shared static ~this()
{
    __gshared int count;

    if (count++) fprintf(stderr, "dtor_called_more_than_once");
    else throw new Exception("static_dtor_exception");
}

void main()
{
}