TypeScript/tests/baselines/reference/asiPreventsParsingAsNamespace02.js
2015-06-03 12:05:53 -07:00

15 lines
388 B
TypeScript

//// [asiPreventsParsingAsNamespace02.ts]
var module: number;
var m: string;
module // this is the identifier 'namespace'
m // this is the identifier 'm'
{ } // this is a block body
//// [asiPreventsParsingAsNamespace02.js]
var module;
var m;
module; // this is the identifier 'namespace'
m; // this is the identifier 'm'
{ } // this is a block body