#pragma once namespace matcher { struct {} any; using any_t = decltype(any); template <typename T> bool operator==(T const &, any_t) { return true; } }