TypeScript/tests/baselines/reference/parserSymbolIndexer3.js

12 lines
184 B
JavaScript
Raw Normal View History

2015-02-04 00:52:06 +01:00
//// [parserSymbolIndexer3.ts]
class C {
static [s: symbol]: string;
}
//// [parserSymbolIndexer3.js]
var C = (function () {
function C() {
}
return C;
})();