swc/crates/swc_ecma_parser/tests/tsc/asiPreventsParsingAsAmbientExternalModule02.ts

10 lines
291 B
TypeScript

var declare: number;
var module: string;
module container {
declare // this is the identifier 'declare'
module // this is the identifier 'module'
"my external module" // this is just a string
{ } // this is a block body
}