summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/components/foo.cpp
blob: 163c6e2fc4ad4d7e87b26be0e2f4b1bc7855a8c2 (plain)
1
2
3
4
5
6
7
8
9
10
#include "foo.hpp"

#include "foodep.hpp"
#include <iostream>
#include <ostream>

int foo(int x) {
  std::cout << "foo(" << x << ")" << std::endl;
  return foodep(x) + 7;
}