Add CMake tests

This commit is contained in:
Peter Dimov
2023-09-08 09:47:09 +03:00
parent 8ad6749d4a
commit bdc9ff1e24
7 changed files with 65 additions and 27 deletions

11
test/quick.cpp Normal file
View File

@ -0,0 +1,11 @@
// Copyright 2023 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt)
#include <boost/array.hpp>
int main()
{
boost::array<int, 2> a = {{ 0, 1 }};
return a[0];
}