#include "library.hpp" namespace iue::other { int Widget::calc() const { return 5; } int calc(const Widget& w) { return w.calc(); } } // namespace iue::other