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

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