xref: /netbsd-src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/stderr_msg.d (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
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