TypeScript/tests/baselines/reference/staticAsIdentifier.js
2015-12-08 17:51:10 -08:00

13 lines
191 B
TypeScript

//// [staticAsIdentifier.ts]
class C {
static static
[x: string]: string;
}
//// [staticAsIdentifier.js]
var C = (function () {
function C() {
}
return C;
}());