diff options
Diffstat (limited to 'test_repo/src/lib.cc')
| -rw-r--r-- | test_repo/src/lib.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test_repo/src/lib.cc b/test_repo/src/lib.cc new file mode 100644 index 0000000..2083478 --- /dev/null +++ b/test_repo/src/lib.cc @@ -0,0 +1,9 @@ +#include "lib.h" + +#include <string_view> + +namespace lib { +std::string_view print() { + return "test"; +} +} |