TypeScript/tests/baselines/reference/unicodeIdentifierName2.js

8 lines
132 B
JavaScript

//// [unicodeIdentifierName2.ts]
var a₁ = "hello"; alert(a₁)
//// [unicodeIdentifierName2.js]
var a;
"hello";
alert(a);