xref: /netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/rt_trap_exceptions_drt.d (revision b1e838363e3c6fc78a55519254d99869742dd33c)
1 // { dg-shouldfail "uncaught exception" }
test()2 void test()
3 {
4     int innerLocal = 20;
5     throw new Exception("foo");
6 }
main(string[]args)7 void main(string[] args)
8 {
9     string myLocal = "bar";
10     test();
11 }
12