TypeScript/tests/cases/conformance/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace03.ts
Daniel Rosenwasser e93b7a75ce Added tests.
2015-06-02 15:42:24 -07:00

9 lines
214 B
TypeScript

var namespace: number;
var n: string;
namespace container {
namespace // this is the identifier 'namespace'
n // this is the identifier 'n'
{ } // this is a block body
}