#include "another.hpp" #include inline void shared() { std::cout << "main.cpp: shared()\n"; } int main() { shared(); another(); return 0; }