#include "../tap.hpp" #include "../typeidx.hpp" /////////////////////////////////////////////////////////////////////////////// int main (int, char**) { cruft::TAP::logger tap; tap.expect_eq (cruft::typeidx (), cruft::typeidx (), "equality for int"); tap.expect_eq (cruft::typeidx (), cruft::typeidx (), "equality for float"); tap.expect_neq (cruft::typeidx (), cruft::typeidx (), "inequality for int/float"); return tap.status (); }