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

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

int baz(int x) {
  std::cout << "baz(" << x << ")" << std::endl;
  return bazdep(x) * 13;
}