summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/install/foo.cpp
blob: 4a3b17ac49fb97c0341497f7503df0d4b9e0437f (plain)
1
2
3
4
5
6
7
8
9
10
#include "foo.hpp"
#include "baz/baz.hpp"
#include "qux.hpp"
#include <iostream>

int Foo::foo() {
  std::cout << "foo & inline " << baz_str() << std::endl;
  qux();
  return baz();
}