parent
778c96b8d7
commit
b62e7f9223
|
@ -78,6 +78,10 @@ test_iterator (Iter it)
|
|||
for (auto c = it.iter (); c; c++)
|
||||
*c;
|
||||
|
||||
/* Same. */
|
||||
for (auto c = +it; c; c++)
|
||||
*c;
|
||||
|
||||
it += it.len ();
|
||||
it = it + 10;
|
||||
it = 10 + it;
|
||||
|
|
Loading…
Reference in New Issue