summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/components/main.cpp
blob: b6734a24a5ed4e8a9ab00cd6c0d23f2569269996 (plain)
1
2
3
4
5
6
7
8
9
10
#include "foo.hpp"
#include "bar.hpp"

#include <iostream>
#include <ostream>

int main(int argc, char **argv) {
  std::cout << "Hello-from-main" << std::endl;
  std::cout << foo(bar(3)) << std::endl;
}