Home | History | Annotate | Download | only in FixIt

Lines Matching full:namespace

7 namespace std {
17 namespace otherstd { // expected-note 2{{'otherstd' declared here}} \
18 // expected-note{{namespace 'otherstd' defined here}}
19 using namespace std;
22 using namespace std;
25 // expected-error{{no type named 'strng' in namespace 'otherstd'; did you mean 'string'?}}
28 ::other_std::string str3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'?}}
35 using namespace othestd; // expected-error{{no namespace named 'othestd'; did you mean 'otherstd'?}}
36 namespace blargh = otherstd; // expected-note 3{{namespace 'blargh' defined here}}
37 using namespace ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
39 namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}
40 namespace wobble = ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
44 std::basic_sting<char> b2; // expected-error{{no template named 'basic_sting' in namespace 'std'; did you mean 'basic_string'?}}
78 namespace nonstd {
84 namespace check_bool {