summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/install/bar.cpp
blob: 6cc12604e003ddf31ce8b36828ede121e13b253e (plain)
1
2
3
4
5
6
7
#include "bar.hpp"
#include <iostream>

int bar(Foo *foo) {
  std::cout << "bar" << std::endl;
  return (foo == nullptr) ? -1 : foo->foo();
}