xref: /netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/stderr_msg.d (revision 181254a7b1bdde6873432bffef2d2decc4b5c22f)
1 // { dg-shouldfail "stderr_msg msg" }
2 // { dg-output "object.Exception@.*: stderr_msg msg" }
main()3 void main()
4 {
5     throw new Exception("stderr_msg msg");
6 }
7