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

#include <iostream>
#include <ostream>

baz_t bazdep(baz_t x) {
  std::cout << "bazdep(" << x << ")" << std::endl;
  return x + 11;
}