diff options
Diffstat (limited to 'tests/test_cases/deps/chain/bar.cpp')
-rw-r--r-- | tests/test_cases/deps/chain/bar.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_cases/deps/chain/bar.cpp b/tests/test_cases/deps/chain/bar.cpp new file mode 100644 index 0000000..e79bcf1 --- /dev/null +++ b/tests/test_cases/deps/chain/bar.cpp @@ -0,0 +1,5 @@ +#include "bar.hpp" + +#include "baz.hpp" + +void print_bar(std::string s) { print_baz("[bar]: " + s); } |