TypeScript/tests/cases/conformance/jsx/tsxAttributeResolution4.jsx
2015-06-18 14:03:43 -07:00

4 lines
150 B
JavaScript

// OK
<test1 {...{ x: function (n) { return 0; } }}/>;
// Error, no member 'len' on 'string'
<test1 {...{ x: function (n) { return n.len; } }}/>;