1
0
Fork 0
mirror of https://git.suyu.dev/suyu/dynarmic.git synced 2025-03-05 13:45:36 +00:00
dynarmic/externals/fmt/test/static-export-test/main.cc
2021-06-23 05:04:53 -04:00

6 lines
114 B
C++

#include <iostream>
#include <string>
extern std::string foo();
int main() { std::cout << foo() << std::endl; }