diff options
Diffstat (limited to 'tests/test_cases/deps/chain/main.cpp')
-rw-r--r-- | tests/test_cases/deps/chain/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_cases/deps/chain/main.cpp b/tests/test_cases/deps/chain/main.cpp new file mode 100644 index 0000000..db539d4 --- /dev/null +++ b/tests/test_cases/deps/chain/main.cpp @@ -0,0 +1,7 @@ +#include "foo.hpp" +#include "qux.hpp" + +int main() { + print_foo("Everthing is fine."); + print_qux("Everthing is ok."); +} |