mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
10 lines
153 B
TypeScript
10 lines
153 B
TypeScript
|
//@jsx: preserve
|
||
|
//@filename: file1.tsx
|
||
|
//@noimplicitany: true
|
||
|
declare module JSX {
|
||
|
interface Element { }
|
||
|
}
|
||
|
|
||
|
// Error under implicit any
|
||
|
<div n='x' />;
|