Lines Matching full:did
24 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'o…
25 // expected-error{{no type named 'strng' in namespace 'otherstd'; did you mean 'string'?}}
26 tring str2; // expected-error{{unknown type name 'tring'; did you mean 'string'?}}
28 …3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'…
32 return radious * pi; // expected-error{{did you mean 'radius'?}} in area()
35 using namespace othestd; // expected-error{{no namespace named 'othestd'; did you mean 'otherstd'?}}
37 using namespace ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did…
39 namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}
40 …rg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
43 …basc_string<char> b1; // expected-error{{no template named 'basc_string'; did you mean 'basic_stri… in test_string()
44 …b2; // expected-error{{no template named 'basic_sting' in namespace 'std'; did you mean 'basic_str… in test_string()
47 …return s.fnd("hello") // expected-error{{no member named 'fnd' in 'std::basic_string<char>'; did y… in test_string()
48 …== std::string::pos; // expected-error{{no member named 'pos' in 'std::basic_string<char>'; did yo… in test_string()
55 …{{initializer 'base' does not name a non-static data member or base class; did you mean the base c… in Derived()
56 …{initializer 'ember' does not name a non-static data member or base class; did you mean the member… in Derived()
59 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}} in getMember()
66 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}} in getMember()
73 integer * i = 0; // expected-error{{unknown type name 'integer'; did you mean 'Integer'?}} in foo()
74 …unsinged *ptr = 0; // expected-error{{use of undeclared identifier 'unsinged'; did you mean 'unsig… in foo()
75 …return *i + *ptr + global_val; // expected-error{{use of undeclared identifier 'global_val'; did y… in foo()
83 yarn str4; // expected-error{{unknown type name 'yarn'; did you mean 'nonstd::yarn'?}}
84 wibble::yarn str5; // expected-error{{no type named 'yarn' in namespace 'otherstd'; did you mean 'n…
90 …// expected-error{{no template named 'basic_string' in namespace 'nonstd'; did you mean simply 'ba… in poit()
91 … // expected-error{{no template named 'wide_string' in namespace 'nonstd'; did you mean 'another::… in poit()
92 …return wibble::narf; // expected-error{{no member named 'narf' in namespace 'otherstd'; did you me… in poit()
97 Bool b; // expected-error{{use of undeclared identifier 'Bool'; did you mean 'bool'?}} in f()
111 using namespace outr::inner; // expected-error{{no namespace named 'inner' in namespace 'outr'; did…
114 …outr::inner::i = 3; // expected-error{{no member named 'inner' in namespace 'outr'; did you mean '… in func()
115 …outer::innr::i = 4; // expected-error{{no member named 'innr' in namespace 'outer'; did you mean '… in func()
136 …bar(x, 5); // expected-error{{too many arguments to function call, expected 1, have 2; did you me… in bar()