TypeScript/tests/cases/conformance/jsx/tsxElementResolution18.tsx
2015-06-18 14:03:43 -07:00

10 lines
162 B
TypeScript

//@jsx: preserve
//@filename: file1.tsx
//@noimplicitany: true
declare module JSX {
interface Element { }
}
// Error under implicit any
<div n='x' />;