summaryrefslogtreecommitdiffstats
path: root/src/fmt/test/static-export-test/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmt/test/static-export-test/main.cc')
-rw-r--r--src/fmt/test/static-export-test/main.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fmt/test/static-export-test/main.cc b/src/fmt/test/static-export-test/main.cc
new file mode 100644
index 000000000..38f7999ed
--- /dev/null
+++ b/src/fmt/test/static-export-test/main.cc
@@ -0,0 +1,6 @@
+#include <iostream>
+#include <string>
+
+extern std::string foo();
+
+int main() { std::cout << foo() << std::endl; }