mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
30 lines
558 B
TypeScript
30 lines
558 B
TypeScript
// @filename: file.tsx
|
|
// @jsx: preserve
|
|
// @noLib: true
|
|
// @skipLibCheck: true
|
|
// @libFiles: react.d.ts,lib.d.ts
|
|
|
|
import React = require('react');
|
|
|
|
interface PoisonedProp {
|
|
x: string;
|
|
y: "2";
|
|
}
|
|
|
|
class Poisoned extends React.Component<PoisonedProp, {}> {
|
|
render() {
|
|
return <div>Hello</div>;
|
|
}
|
|
}
|
|
|
|
const obj = {};
|
|
|
|
// OK
|
|
<Poisoned {...{x: "ok", y: "2"}} />;
|
|
|
|
// Error
|
|
let p = <Poisoned {...obj} />;
|
|
let y = <Poisoned />;
|
|
let z = <Poisoned x y/>;
|
|
let w = <Poisoned {...{x: 5, y: "2"}}/>;
|
|
let w1 = <Poisoned {...{x: 5, y: "2"}} X="hi" />; |