This should warn but doesn't
var f = <span/>
var g = <span/>
var children = [f, g];
return (
<div>
<div key="0">
{g}
</div>
<div key="1">
{f}
</div>
<div key="2">
{children}
</div>
</div>
);
Turns out we're modifying f and g after the first time to set ._store.validated and then not looking again if already validated.
This should warn but doesn't
Turns out we're modifying
fandgafter the first time to set._store.validatedand then not looking again if already validated.