diff options
Diffstat (limited to 'tests/projects/other/object_only/src/main.cpp')
| -rw-r--r-- | tests/projects/other/object_only/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/other/object_only/src/main.cpp b/tests/projects/other/object_only/src/main.cpp new file mode 100644 index 000000000..d55d4d342 --- /dev/null +++ b/tests/projects/other/object_only/src/main.cpp @@ -0,0 +1,7 @@ +#include "foo.h" +#include <iostream> + +int main(int argc, char** argv) { + std::cout << "add(1, 2) = " << add(1, 2) << std::endl; + return 0; +} |
