xref: /netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/message_with_null.d (revision b1e838363e3c6fc78a55519254d99869742dd33c)
1*b1e83836Smrg // { dg-shouldfail " world!" }
2*b1e83836Smrg // { dg-output "object.Exception@.*: hello.*world!" }
3*b1e83836Smrg module message_with_null;
4*b1e83836Smrg 
main()5*b1e83836Smrg void main()
6*b1e83836Smrg {
7*b1e83836Smrg     throw new Exception("hello\0 world!");
8*b1e83836Smrg }
9