• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <iostream>
2 #include <string>
3 
4 extern std::string foo();
5 
main()6 int main() { std::cout << foo() << std::endl; }
7