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

#include <iostream>
#include <ostream>

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