swc/crates/swc_ecma_parser/tests/tsc/tsxElementResolution16.tsx
2022-02-04 17:08:38 +09:00

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)