export module work; import std; export template void do_work() { if constexpr (std::is_same_v) { std::println("Hello world!"); } else if constexpr (std::is_same_v) { std::println("Hello test!"); } else { std::println("Hello unknown type!"); } }