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

6 lines
206 B
TypeScript

function f(interface: number, I: string) {
interface // This should be the identifier 'interface'
I // This should be the identifier 'I'
{} // This should be a block body
}