diff options
Diffstat (limited to 'tests/test_cases/deps/install/baz.hpp')
-rw-r--r-- | tests/test_cases/deps/install/baz.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_cases/deps/install/baz.hpp b/tests/test_cases/deps/install/baz.hpp new file mode 100644 index 0000000..f0f8377 --- /dev/null +++ b/tests/test_cases/deps/install/baz.hpp @@ -0,0 +1,10 @@ +#ifndef BAZ_HPP +#define BAZ_HPP + +int baz(); + +#include <string> + +static inline std::string baz_str() { return "baz"; } + +#endif |