osrm-backend/third_party/fmt/test/static-export-test/main.cc

7 lines
114 B
C++
Raw Normal View History

2022-09-30 08:28:52 -04:00
#include <iostream>
#include <string>
extern std::string foo();
int main() { std::cout << foo() << std::endl; }