cling/test/ErrorRecovery/Overloads.h
2012-09-05 09:37:39 +00:00

8 lines
124 B
C++

#include <fstream>
#include <string>
void Overloads () {
std::string s;
std::ofstream("file.txt") << s << std::endl;
}