summaryrefslogtreecommitdiff
path: root/tests/actions/install/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2024-07-15 23:18:06 +0800
committerruki <[email protected]>2024-07-15 23:18:06 +0800
commit0dc0148b8bd4d48bec1b6aefdd59761c31361a93 (patch)
tree91ded58ee5060849d020d70b3441883ee02b9dd3 /tests/actions/install/src/main.cpp
parent1cf160a75f0f03e114c09af4f78416762663b904 (diff)
add install test
Diffstat (limited to 'tests/actions/install/src/main.cpp')
-rw-r--r--tests/actions/install/src/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/actions/install/src/main.cpp b/tests/actions/install/src/main.cpp
new file mode 100644
index 000000000..d55d4d342
--- /dev/null
+++ b/tests/actions/install/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;
+}