summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/lint/bardep.cpp
blob: 33931da77cc255f8da499058fbb02dd7c9e9807d (plain)
1
2
3
4
5
6
7
8
9
#include "bardep.hpp"

#include <iostream>
#include <ostream>

bar_t bardep(bar_t x) {
  std::cout << "bardep(" << x << ")" << std::endl;
  return x + 5;
}