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

int main(int argc, char const *argv[]) {
  std::cout << foo() << " " << bar() << std::endl;
  return 0;
}