1 // { dg-shouldfail "static_dtor_exception" } 2 // { dg-output "object.Exception@.*: static_dtor_exception" } 3 // https://issues.dlang.org/show_bug.cgi?id=16594 4 import core.stdc.stdio; 5 ~this()6shared static ~this() 7 { 8 __gshared int count; 9 10 if (count++) fprintf(stderr, "dtor_called_more_than_once"); 11 else throw new Exception("static_dtor_exception"); 12 } 13 main()14void main() 15 { 16 } 17