mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +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' />;
|