aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.exceptions/line_trace.d
blob: ed237c2f7e1961d60e99897022988d6375270ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-output "object.Exception@.*: exception" }
void main()
{
    try
    {
        f1();
    }
    catch (Exception e)
    {
        import core.stdc.stdio : printf;
        auto str = e.toString();
        printf("%.*s\n", cast(int)str.length, str.ptr);
    }
}

void f1()
{
    throw new Exception("exception");
}