#include #include int main () { cruft::TAP::logger tap; tap.expect (cruft::concepts::named::container>, "vector is a container"); tap.expect (!cruft::concepts::named::container, "int is not a container"); tap.expect (cruft::concepts::tuple>, "tuple<> is a tuple"); tap.expect (cruft::concepts::tuple>, "tuple is a tuple"); return tap.status (); }