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();