1
0
Fork 0
arangodb/cmake/CheckCXX11Features/cxx11-test-shared_ptr.cpp

7 lines
73 B
C++

#include <memory>
int main() {
std::shared_ptr<int> test;
return 0;
}