summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/private/bar.cpp
blob: dfce0e80dc5d66b8cc28130f90108c77e97ea1e3 (plain)
1
2
3
4
5
6
7
8
#include "foo/foo.hpp"
#include "bar.hpp"
#include <iostream>

int bar() {
  std::cout << "bar\n";
  return foo();
}