diff options
-rw-r--r-- | test/lab_rat.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lab_rat.cpp b/test/lab_rat.cpp index 24f75c6..ae93c7b 100644 --- a/test/lab_rat.cpp +++ b/test/lab_rat.cpp @@ -1,5 +1,7 @@ #include <iostream> +namespace lab_rat { + void baz() { std::cout << "baz\n"; } @@ -14,7 +16,9 @@ void foo() { bar(); } +} // namespace lab_rat + int main() { - foo(); + lab_rat::foo(); return 0; } |