fixed optional<optional<T>&> case

This commit is contained in:
Andrzej Krzemienski
2016-05-17 00:54:09 +02:00
parent 0755ab7b4e
commit 08076e3964
7 changed files with 64 additions and 0 deletions

View File

@ -39,6 +39,7 @@ int main()
{
test_optional_ref_assignment<ScopeGuard>();
test_optional_ref_assignment<Abstract>();
test_optional_ref_assignment< optional<int> >();
return boost::report_errors();
}