aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts/snippets/static_vs_inline_vs_unnamed_namespaces/separate_method_definitions/main.cpp
blob: b3118c1029a924b2c69e654714b0f2bc51678ad5 (plain) (blame)
1
2
3
4
5
6
7
8
#include "another.hpp"
#include "shared.hpp"

int main() {
    Test test;
    another();
    return 0;
}