summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/transitive-components/foo.cpp
blob: 197e1fba6412b88ed41f925eb826db47d7b5119a (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) * 3;
}