// RUN: %clang_cc1 -fsyntax-only -verify %s // RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s // template class allocator; template struct char_traits; template, typename _Alloc = allocator<_CharT> > class basic_string; template const typename basic_string<_CharT, _Traits, _Alloc>::size_type basic_string<_CharT, _Traits, _Alloc>::_Rep::_S_max_size // expected-error{{no member named '_Rep' in 'basic_string<_CharT, _Traits, _Alloc>'}} = (((npos - sizeof(_Rep_base))/sizeof(_CharT)) - 1) / 4; // PR7118 template class Foo { class Bar; void f() { Bar i; } }; // PR7625 template struct a : T { struct x : T { int aa() { return p; } // expected-error{{use of undeclared identifier 'p'}} }; }; // rdar://8605381 namespace rdar8605381 { struct X {}; struct Y { // expected-note{{candidate constructor (the implicit copy constructor) not viable}} #if __cplusplus >= 201103L // C++11 or later // expected-note@-2 {{candidate constructor (the implicit move constructor) not viable}} #endif Y(); }; struct { Y obj; } objs[] = { new Y // expected-error{{no viable conversion}} }; } // http://llvm.org/PR8234 namespace PR8234 { template class callback { }; template class callback { public: callback() {} }; template< typename ARG_TYPE0> class callback { public: callback() {} }; void f() { callback op; } } namespace PR9007 { struct bar { enum xxx { yyy = sizeof(struct foo*) }; foo *xxx(); }; } namespace PR9026 { class InfallibleTArray { }; class Variant; class CompVariant { operator const InfallibleTArray&() const; }; class Variant { operator const CompVariant&() const; }; void Write(const Variant& __v); void Write(const InfallibleTArray& __v); Variant x; void Write2() { Write(x); } } namespace PR10270 { template class C; template void f() { if (C == 1) // expected-error{{expected unqualified-id}} return; } } namespace rdar11806334 { class cc_YCbCr; class cc_rgb { public: cc_rgb( uint p ); // expected-error {{unknown type name}} cc_rgb( cc_YCbCr v_in ); }; class cc_hsl { public: cc_rgb rgb(); cc_YCbCr YCbCr(); }; class cc_YCbCr { public: cc_YCbCr( const cc_rgb v_in ); }; cc_YCbCr cc_hsl::YCbCr() { cc_YCbCr v_out = cc_YCbCr( rgb()); return v_out; } } namespace test1 { int getString(const int*); template class ELFObjectFile { const int* sh; ELFObjectFile() { switch (*sh) { } int SectionName(getString(sh)); } }; } namespace test2 { struct fltSemantics ; const fltSemantics &foobar(); void VisitCastExpr(int x) { switch (x) { case 42: const fltSemantics &Sem = foobar(); } } } namespace test3 { struct nsCSSRect { }; static int nsCSSRect::* sides; nsCSSRect dimenX; void ParseBoxCornerRadii(int y) { switch (y) { } int& x = dimenX.*sides; } } namespace pr16964 { template struct bs { bs(); static int* member(); // expected-note{{possible target}} member(); // expected-error{{C++ requires a type specifier for all declarations}} static member(); // expected-error{{C++ requires a type specifier for all declarations}} static int* member(int); // expected-note{{possible target}} }; template bs::bs() { member; } // expected-error{{did you mean to call it}} bs test() { return bs(); // expected-note{{in instantiation}} } } namespace pr12791 { template class allocator {}; template struct char_traits; struct input_iterator_tag {}; struct forward_iterator_tag : public input_iterator_tag {}; template struct basic_string { struct _Alloc_hider : _Alloc { _Alloc_hider(_CharT*, const _Alloc&); }; mutable _Alloc_hider _M_dataplus; template basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a = _Alloc()); template static _CharT* _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a, input_iterator_tag); template static _CharT* _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a, forward_iterator_tag); static _CharT* _S_construct(size_type __req, _CharT __c, const _Alloc& __a); // expected-error{{unknown type name 'size_type'}} }; template template basic_string<_CharT, _Traits, _Alloc>:: basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a) : _M_dataplus(_S_construct(__beg, __end, __a, input_iterator_tag()), __a) {} template, typename _Alloc = allocator<_CharT> > struct basic_stringbuf { typedef _CharT char_type; typedef basic_string __string_type; __string_type str() const {__string_type((char_type*)0,(char_type*)0);} }; template class basic_stringbuf; } namespace pr16989 { class C { template C tpl_mem(T *) { return } // expected-error{{expected expression}} void mem(int *p) { tpl_mem(p); } }; class C2 { void f(); }; void C2::f() {} } namespace pr20660 { appendList(int[]...); // expected-error {{C++ requires a type specifier for all declarations}} appendList(int[]...) { } // expected-error {{C++ requires a type specifier for all declarations}} }