提交 b62e7f92 编写于 作者: B Behdad Esfahbod

[test] Test unary operator+

"Test" as in compiles..
上级 778c96b8
...@@ -78,6 +78,10 @@ test_iterator (Iter it) ...@@ -78,6 +78,10 @@ test_iterator (Iter it)
for (auto c = it.iter (); c; c++) for (auto c = it.iter (); c; c++)
*c; *c;
/* Same. */
for (auto c = +it; c; c++)
*c;
it += it.len (); it += it.len ();
it = it + 10; it = it + 10;
it = 10 + it; it = 10 + it;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册