TypeScript/tests/baselines/reference/unicodeIdentifierName2.js

8 lines
132 B
TypeScript

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