0_0_38528303_12475.cpp:3:8: error: variable or field 'f' declared void
void f(string s) {
^
0_0_38528303_12475.cpp:3:8: error: 'string' was not declared in this scope
0_0_38528303_12475.cpp:3:8: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/iosfwd:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/istream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/sstream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/complex:45,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ccomplex:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:52,
from 0_0_38528303_12475.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stringfwd.h:62:33: note: 'std::string'
typedef basic_string<char> string;
^
0_0_38528303_12475.cpp: In function 'int main()':
0_0_38528303_12475.cpp:8:1: error: 'string' was not declared in this scope
string s = "";
^
0_0_38528303_12475.cpp:8:1: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/iosfwd:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/istream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/sstream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/complex:45,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ccomplex:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:52,
from 0_0_38528303_12475.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stringfwd.h:62:33: note: 'std::string'
typedef basic_string<char> string;
^
0_0_38528303_12475.cpp:10:1: error: 's' was not declared in this scope
s += "hahahdhsjkhadkjshkjdhakjhskdjhajkshdkjshakjhdkjsahdjkhsajkdsa";
^
0_0_38528303_12475.cpp:11:3: error: 's' was not declared in this scope
f(s);
^
0_0_38528303_12475.cpp:11:4: error: 'f' was not declared in this scope
f(s);
^
|