Added move-assign test

[SVN r80343]
This commit is contained in:
Joel de Guzman
2012-09-01 01:02:46 +00:00
parent 3613310b62
commit e587ad4d50

View File

@ -108,6 +108,9 @@ void test()
return_type2 v2 = move_me(generate2());
BOOST_TEST(copies == 0);
v2 = move_me(generate2());
BOOST_TEST(copies == 0);
std::cout << "Copies: " << copies << std::endl;
}