TypeScript/tests/baselines/reference/asiPreventsParsingAsInterface03.types
2015-06-04 15:09:09 -07:00

17 lines
411 B
Text

=== tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts ===
var interface: number, I: string;
>interface : number
>I : string
namespace n {
>n : typeof n
interface // This should be the identifier 'interface'
>interface : number
I // This should be the identifier 'I'
>I : string
{} // This should be a block body
}