aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.exceptions/message_with_null.d
blob: 64092f0c5cd4ca97fb43b117a35a5697cd4334dd (plain)
1
2
3
4
5
6
7
8
// { dg-shouldfail " world!" }
// { dg-output "object.Exception@.*: hello.*world!" }
module message_with_null;

void main()
{
    throw new Exception("hello\0 world!");
}