Sign in
gnu
/
gcc
/
71f3036b8a83da7fb559923bc80687ea1dabe14a
/
.
/
libphobos
/
testsuite
/
libphobos.exceptions
/
message_with_null.d
blob: 64092f0c5cd4ca97fb43b117a35a5697cd4334dd [
file
] [
log
] [
blame
]
// { dg-shouldfail " world!" }
// { dg-output "object.Exception@.*: hello.*world!" }
module
message_with_null
;
void
main
()
{
throw
new
Exception
(
"hello\0 world!"
);
}