summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/transitive-components/bar.cpp
blob: 437619c051296fec2bcf5910129e1b5c778dba2b (plain)
1
2
3
4
5
6
7
8
9
10
#include "bar.hpp"

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

int bar(int x) {
  std::cout << "bar(" << x << ")" << std::endl;
  return bardep(x) * 7;
}