Add test/cmake_install_test, test/cmake_subdir_test

This commit is contained in:
Peter Dimov
2024-01-15 20:20:20 +02:00
parent 7a5386eeeb
commit 88428d350d
4 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Copyright 2024 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/optional/optional.hpp>
int main()
{
boost::optional<int> o1;
boost::optional<int> o2( 0 );
o1 = o2;
return *o1;
}