Files
UglifyJS/test/input/invalid/const.js
Alex Lam S.L c391576d52 remove support for const (#1910)
As this is not part of ES5.
2017-05-12 14:57:41 +08:00

9 lines
79 B
JavaScript

function f() {
const a;
}
function g() {
"use strict";
const a;
}