1'use strict'; 2require('../common'); 3 4function test() { 5 const a = 'abc\0def'; 6 console.error(a); 7 throw new Error(a); 8} 9Object.defineProperty(test, 'name', { value: 'fun\0name' }); 10 11test(); 12