summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/private/main_links_bar_foo.cpp
blob: e9360745634530ce505df619d5e498f8a1b44272 (plain)
1
2
3
4
5
6
7
8
9
// test that foo is linked after bar

#include "bar/bar.hpp"
#include <iostream>

int main() {
  std::cout << "main\n";
  return bar();
}