summaryrefslogtreecommitdiff
path: root/tests/apis/set_toolchains/src/test.cpp
blob: ed19247898674d41d5a45614e980913acb999390 (plain)
1
2
3
4
5
6
7
8
9
#include "foo.h"
#include <iostream>

using namespace std;

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