fmt/test/static-export-test/main.cc

7 lines
114 B
C++
Raw Normal View History

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