TypeScript/tests/cases/conformance/jsx/tsxAttributeResolution16.tsx
Wesley Wigham 648bd6e9e0 Skip more lib checks, improve test execution time a bit more (#18952)
* Skip more lib checks, improve test execution time a bit more

* Change complexRecursiveCollections to still check

* Remove way more
2017-10-04 14:43:35 -07:00

30 lines
623 B
TypeScript

// @filename: file.tsx
// @jsx: preserve
// @noLib: true
// @skipLibCheck: true
// @libFiles: react.d.ts,lib.d.ts
import React = require('react');
interface Address {
street: string;
country: string;
}
interface CanadianAddress extends Address {
postalCode: string;
}
interface AmericanAddress extends Address {
zipCode: string;
}
type Properties = CanadianAddress | AmericanAddress;
export class AddressComp extends React.Component<Properties, void> {
public render() {
return null;
}
}
let a = <AddressComp postalCode='T1B 0L3' street="vancouver" country="CA" />