summaryrefslogtreecommitdiffstats
path: root/test_repo/src/lib.cc
blob: 20834789fc1c1fe2a7530292da52ec3556f18579 (plain)
1
2
3
4
5
6
7
8
9
#include "lib.h"

#include <string_view>

namespace lib {
std::string_view print() {
  return "test";
}
}