diff options
Diffstat (limited to 'tests/projects/c++/linkorders/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/linkorders/src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/c++/linkorders/src/main.cpp b/tests/projects/c++/linkorders/src/main.cpp new file mode 100644 index 000000000..ed1924789 --- /dev/null +++ b/tests/projects/c++/linkorders/src/main.cpp @@ -0,0 +1,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; +} |
