summaryrefslogtreecommitdiff
path: root/tests/apis/custom_scopeapis/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2023-10-12 22:49:05 +0800
committerruki <[email protected]>2023-10-12 22:49:05 +0800
commitacccacadd43f998d144865322eb2561698a2173d (patch)
treea127b6cf1bccc27d4dd0886d267f4753e285d3dd /tests/apis/custom_scopeapis/src/main.cpp
parent74633ce5a35b554125c13c922c43287119adce34 (diff)
add custom scopeapis test
Diffstat (limited to 'tests/apis/custom_scopeapis/src/main.cpp')
-rw-r--r--tests/apis/custom_scopeapis/src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/apis/custom_scopeapis/src/main.cpp b/tests/apis/custom_scopeapis/src/main.cpp
new file mode 100644
index 000000000..7c435d251
--- /dev/null
+++ b/tests/apis/custom_scopeapis/src/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main(int argc, char** argv)
+{
+ cout << "hello world!" << endl;
+ return 0;
+}