summaryrefslogtreecommitdiff
path: root/tests/actions/package/localpkg/bar/src/main.cpp
blob: 0102fba753daa7d3e3d1f5bd173c3b11023fa306 (plain)
1
2
3
4
5
6
7
8
9
10
#include "foo.h"
#include <iostream>

using namespace std;

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