summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/install/qux.hpp
blob: b2f1611f2ec2f8201cab0185ce3331f41206f311 (plain)
1
2
3
4
5
6
7
8
#ifndef QUX_HPP
#define QUX_HPP

#include <iostream>

void qux() { std::cout << "qux" << std::endl; }

#endif