libcruft-util/test/thread/mutex.cpp

12 lines
175 B
C++
Raw Normal View History

#include "tap.hpp"
#include "thread/mutex.hpp"
int main ()
{
cruft::TAP::logger tap;
cruft::thread::mutex a;
cruft::thread::mutex b;
return tap.status ();
}