]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/fmt/test/static-export-test/main.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / fmt / test / static-export-test / main.cc
diff --git a/ceph/src/fmt/test/static-export-test/main.cc b/ceph/src/fmt/test/static-export-test/main.cc
new file mode 100644 (file)
index 0000000..38f7999
--- /dev/null
@@ -0,0 +1,6 @@
+#include <iostream>
+#include <string>
+
+extern std::string foo();
+
+int main() { std::cout << foo() << std::endl; }