Fix example in ES.26 section

This commit is contained in:
David Capello 2015-09-23 16:28:48 -03:00
parent 058e1bfb41
commit 2238007823

View File

@ -6936,7 +6936,7 @@ If `leak==true` the object pointer to by `p2` is leaked and the object pointed t
{
int i;
for (i=0; i<20; ++i) { /* ... */ }
for (i=0; i<200; ++) { /* ... */ } // bad: i recycled
for (i=0; i<200; ++i) { /* ... */ } // bad: i recycled
}
**Enforcement**: Flag recycled variables.