TypeScript/tests/cases/fourslash/tsxFindAllReferences6.ts
Kanchalai Tanglertsampan 3d19782b1c Add language service tests
2017-01-18 15:29:38 -08:00

23 lines
609 B
TypeScript

/// <reference path='fourslash.ts' />
/// <reference path='fourslash.ts' />
//@Filename: file.tsx
// @jsx: preserve
// @noLib: true
//// declare module JSX {
//// interface Element { }
//// interface IntrinsicElements {
//// }
//// interface ElementAttributesProperty { props; }
//// }
//// interface OptionPropBag {
//// propx: number
//// propString: string
//// optional?: boolean
//// }
//// declare function Opt(attributes: OptionPropBag): JSX.Element;
//// let opt = <Opt [|wrong|] />; //r1
const [r1] = test.ranges();
verify.referencesOf(r1, [r1]);