Uglify version (uglifyjs -V) 3.19.3
JavaScript input
The uglifyjs CLI command executed or minify() options used.
uglifyjs input.js --mangle-props debug --beautify --output output.js
JavaScript output or error produced.
class Test {
#_$#test$_;
}
The output code is a syntax error because it includes the character # twice: the private property was renamed to #_$#test$_ instead of #_$test$_.