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