summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/install/baz.hpp
blob: f0f83778e2f5e53a0a1bbf076e00a1675b7e9186 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef BAZ_HPP
#define BAZ_HPP

int baz();

#include <string>

static inline std::string baz_str() { return "baz"; }

#endif