summaryrefslogtreecommitdiff
path: root/tests/projects/c++/shared_library_export_all/src/main.cpp
blob: d731d75902a6016285c4b0f309991a108cacc5e1 (plain)
1
2
3
4
5
6
7
8
9
#include "foo.h"
#include "bar.h"
#include <iostream>

int main(int argc, char **argv) {
    std::cout << "foo::add(1, 2) = " << foo::add(1, 2) << std::endl;
    std::cout << "bar::add(1, 2) = " << bar::add(1, 2) << std::endl;
    return 0;
}