mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
19 lines
317 B
TypeScript
19 lines
317 B
TypeScript
// @filename: file.tsx
|
|
// @jsx: preserve
|
|
// @noLib: true
|
|
// @skipLibCheck: true
|
|
// @libFiles: react.d.ts,lib.d.ts
|
|
|
|
import React = require('react');
|
|
|
|
interface Prop {
|
|
x: true;
|
|
}
|
|
class Poisoned extends React.Component<Prop, {}> {
|
|
render() {
|
|
return <div>Hello</div>;
|
|
}
|
|
}
|
|
|
|
// OK
|
|
let p = <Poisoned x/>; |