1// { dg-output "object.Exception@.*: exception" }
2void main()
3{
4    try
5    {
6        f1();
7    }
8    catch (Exception e)
9    {
10        import core.stdc.stdio;
11        auto str = e.toString();
12        printf("%.*s\n", str.length, str.ptr);
13    }
14}
15
16void f1()
17{
18    throw new Exception("exception");
19}
20