swc/crates/swc_ecma_parser/tests/tsc/tsxElementResolution16x.tsx

12 lines
198 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
//@noImplicitAny: true
declare module JSX {
}
interface Obj1 {
new(n: string): {};
}
var obj1: Obj1;
<obj1 x={10} />; // Error (JSX.Element is implicit any)