Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
818bd6cb4df290cb2d46e75c7286d4ae03b4ea2b
/
.
/
test
/
message
/
error_with_nul.js
blob: 2849e9d21c878c2c1b57bb1dcef6c1264c47554f [
file
]
'use strict'
;
require
(
'../common'
);
function
test
()
{
const
a
=
'abc\0def'
;
console
.
error
(
a
);
throw
new
Error
(
a
);
}
Object
.
defineProperty
(
test
,
'name'
,
{
value
:
'fun\0name'
});
test
();