mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
39 lines
647 B
TypeScript
39 lines
647 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>;
|
|
}
|
|
}
|
|
|
|
let obj = {
|
|
x: "hello world",
|
|
y: 2
|
|
};
|
|
|
|
// Error as "obj" has type { x: string; y: number }
|
|
let p = <Poisoned {...obj} />;
|
|
|
|
class EmptyProp extends React.Component<{}, {}> {
|
|
render() {
|
|
return <div>Default hi</div>;
|
|
}
|
|
greeting: string;
|
|
}
|
|
|
|
let o = {
|
|
prop1: false
|
|
}
|
|
// Ok
|
|
let e = <EmptyProp {...o} />; |