9b3ad53
4759d2a
1 2 3 4
5
6 7 8
9
10 11 12 13
#include "another.hpp" #include <iostream> inline void shared() { std::cout << "main.cpp: shared()\n"; } int main() { shared(); another(); return 0; }