diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-05-02 17:53:42 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-05-03 11:43:47 +0200 |
commit | e08b7fc35a754a17feeff663b20cf81b4b428ab7 (patch) | |
tree | be8790d0b834959a50a52fca37926424b7db1ca9 /tests/test_cases/deps/object/foo.hpp | |
parent | 3c89cd4023af84847f449ee4ad731a4b35c97972 (diff) | |
download | rules-cc-e08b7fc35a754a17feeff663b20cf81b4b428ab7.tar.gz |
Add tests for object_only library
Diffstat (limited to 'tests/test_cases/deps/object/foo.hpp')
-rw-r--r-- | tests/test_cases/deps/object/foo.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_cases/deps/object/foo.hpp b/tests/test_cases/deps/object/foo.hpp new file mode 100644 index 0000000..d880c27 --- /dev/null +++ b/tests/test_cases/deps/object/foo.hpp @@ -0,0 +1,8 @@ +#ifndef FOO_HPP +#define FOO_HPP + +#include <string> + +std::string foo(); + +#endif |