// RUN: %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // RUN: %clang_cc1 -std=c++1y %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // PR13819 -- __SIZE_TYPE__ is incompatible. // REQUIRES: LP64 #if __cplusplus < 201103L #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) #else #define fold #endif namespace dr200 { // dr200: dup 214 template T f(int); template T f(U) = delete; // expected-error 0-1{{extension}} void g() { f(1); } } // dr201 FIXME: write codegen test namespace dr202 { // dr202: yes template T f(); template struct X { int arr[fold(g == &f) ? 1 : -1]; }; template struct X; } // FIXME (export) dr204: no namespace dr206 { // dr206: yes struct S; // expected-note 2{{declaration}} template struct Q { S s; }; // expected-error {{incomplete}} template void f() { S s; } // expected-error {{incomplete}} } namespace dr207 { // dr207: yes class A { protected: static void f() {} }; class B : A { public: using A::f; void g() { A::f(); f(); } }; } // dr208 FIXME: write codegen test namespace dr209 { // dr209: yes class A { void f(); // expected-note {{here}} }; class B { friend void A::f(); // expected-error {{private}} }; } // dr210 FIXME: write codegen test namespace dr211 { // dr211: yes struct A { A() try { throw 0; } catch (...) { return; // expected-error {{return in the catch of a function try block of a constructor}} } }; } namespace dr213 { // dr213: yes template struct A : T { void h(T t) { char &r1 = f(t); int &r2 = g(t); // expected-error {{undeclared}} } }; struct B { int &f(B); int &g(B); // expected-note {{in dependent base class}} }; char &f(B); template void A::h(B); // expected-note {{instantiation}} } namespace dr214 { // dr214: yes template T checked_cast(U from) { U::error; } template T checked_cast(U *from); class C {}; void foo(int *arg) { checked_cast(arg); } template T f(int); template T f(U) { T::error; } void g() { f(1); } } namespace dr215 { // dr215: yes template class X { friend void T::foo(); int n; }; struct Y { void foo() { (void)+X().n; } }; } namespace dr216 { // dr216: no // FIXME: Should reject this: 'f' has linkage but its type does not, // and 'f' is odr-used but not defined in this TU. typedef enum { e } *E; void f(E); void g(E e) { f(e); } struct S { // FIXME: Should reject this: 'f' has linkage but its type does not, // and 'f' is odr-used but not defined in this TU. typedef enum { e } *E; void f(E); }; void g(S s, S::E e) { s.f(e); } } namespace dr217 { // dr217: yes template struct S { void f(int); }; template void S::f(int = 0) {} // expected-error {{default arguments cannot be added}} } namespace dr218 { // dr218: yes namespace A { struct S {}; void f(S); } namespace B { struct S {}; void f(S); } struct C { int f; void test1(A::S as) { f(as); } // expected-error {{called object type 'int'}} void test2(A::S as) { void f(); f(as); } // expected-error {{too many arguments}} expected-note {{}} void test3(A::S as) { using A::f; f(as); } // ok void test4(A::S as) { using B::f; f(as); } // ok void test5(A::S as) { int f; f(as); } // expected-error {{called object type 'int'}} void test6(A::S as) { struct f {}; (void) f(as); } // expected-error {{no matching conversion}} expected-note +{{}} }; namespace D { struct S {}; struct X { void operator()(S); } f; } void testD(D::S ds) { f(ds); } // expected-error {{undeclared identifier}} namespace E { struct S {}; struct f { f(S); }; } void testE(E::S es) { f(es); } // expected-error {{undeclared identifier}} namespace F { struct S { template friend void f(S, T) {} }; } void testF(F::S fs) { f(fs, 0); } namespace G { namespace X { int f; struct A {}; } namespace Y { template void f(T); struct B {}; } template struct C {}; } void testG(G::C gc) { f(gc); } } // dr219: na // dr220: na namespace dr221 { // dr221: yes struct A { A &operator=(int&); A &operator+=(int&); static A &operator=(A&, double&); // expected-error {{cannot be a static member}} static A &operator+=(A&, double&); // expected-error {{cannot be a static member}} friend A &operator=(A&, char&); // expected-error {{must be a non-static member function}} friend A &operator+=(A&, char&); }; A &operator=(A&, float&); // expected-error {{must be a non-static member function}} A &operator+=(A&, float&); void test(A a, int n, char c, float f) { a = n; a += n; a = c; a += c; a = f; a += f; } } // dr222 is a mystery -- it lists no changes to the standard, and yet was // apparently both voted into the WP and acted upon by the editor. // dr223: na namespace dr224 { // dr224: no namespace example1 { template class A { typedef int type; A::type a; A::type b; A::type c; // expected-error {{missing 'typename'}} ::dr224::example1::A::type d; class B { typedef int type; A::type a; A::type b; A::type c; // expected-error {{missing 'typename'}} ::dr224::example1::A::type d; B::type e; A::B::type f; A::B::type g; // expected-error {{missing 'typename'}} typename A::B::type h; }; }; template class A { typedef int type; A::type a; A::type b; // expected-error {{missing 'typename'}} }; template struct B { typedef int type; B::type b1; B::type b2; // expected-error {{missing 'typename'}} typedef T1 my_T1; static const int my_I = I; static const int my_I2 = I+0; static const int my_I3 = my_I; B::type b3; // FIXME: expected-error {{missing 'typename'}} B::type b4; // expected-error {{missing 'typename'}} B::type b5; // FIXME: expected-error {{missing 'typename'}} }; } namespace example2 { template struct X { typedef T type; }; template class A { static const int i = 5; X::type w; // FIXME: expected-error {{missing 'typename'}} X::type x; // FIXME: expected-error {{missing 'typename'}} X::i, double>::type y; // FIXME: expected-error {{missing 'typename'}} X::i, long>::type z; // expected-error {{missing 'typename'}} int f(); }; template int A::f() { return i; } } } // dr225: yes template void dr225_f(T t) { dr225_g(t); } // expected-error {{call to function 'dr225_g' that is neither visible in the template definition nor found by argument-dependent lookup}} void dr225_g(int); // expected-note {{should be declared prior to the call site}} template void dr225_f(int); // expected-note {{in instantiation of}} namespace dr226 { // dr226: no template void f() {} #if __cplusplus < 201103L // expected-error@-2 {{extension}} // FIXME: This appears to be wrong: default arguments for function templates // are listed as a defect (in c++98) not an extension. EDG accepts them in // strict c++98 mode. #endif template struct S { template void g(); #if __cplusplus < 201103L // expected-error@-2 {{extension}} #endif template struct X; template void h(); }; template template void S::g() {} template template struct S::X {}; // expected-error {{cannot add a default template arg}} template template void S::h() {} // expected-error {{cannot add a default template arg}} template void friend_h(); struct A { // FIXME: This is ill-formed. template struct friend_B; // FIXME: f, h, and i are ill-formed. // f is ill-formed because it is not a definition. // h and i are ill-formed because they are not the only declarations of the // function in the translation unit. template void friend_f(); template void friend_g() {} template void friend_h() {} template void friend_i() {} #if __cplusplus < 201103L // expected-error@-5 {{extension}} expected-error@-4 {{extension}} // expected-error@-4 {{extension}} expected-error@-3 {{extension}} #endif }; template void friend_i(); template void foo(X) {} template struct Foo {}; // expected-error {{missing a default argument}} expected-note {{here}} #if __cplusplus < 201103L // expected-error@-3 {{extension}} #endif template int foo(X, Y); template int foo(X, Y); int x = foo(0, 0); #if __cplusplus < 201103L // expected-error@-4 {{extension}} // expected-error@-4 {{extension}} #endif } void dr227(bool b) { // dr227: yes if (b) int n; else int n; } namespace dr228 { // dr228: yes template struct X { void f(); }; template struct Y { void g(X x) { x.template X::f(); } }; } namespace dr229 { // dr229: yes template void f(); template void f() {} // expected-error {{function template partial specialization}} template<> void f() {} } namespace dr231 { // dr231: yes namespace outer { namespace inner { int i; // expected-note {{here}} } void f() { using namespace inner; } int j = i; // expected-error {{undeclared identifier 'i'; did you mean 'inner::i'?}} } } // dr234: na // dr235: na namespace dr236 { // dr236: yes void *p = int(); #if __cplusplus < 201103L // expected-warning@-2 {{null pointer}} #else // expected-error@-4 {{cannot initialize}} #endif } namespace dr237 { // dr237: dup 470 template struct A { void f() { T::error; } }; template struct B : A {}; template struct B; // ok } namespace dr239 { // dr239: yes namespace NS { class T {}; void f(T); float &g(T, int); } NS::T parm; int &g(NS::T, float); int main() { f(parm); float &r = g(parm, 1); extern int &g(NS::T, float); int &s = g(parm, 1); } } // dr240: dup 616 namespace dr241 { // dr241: yes namespace A { struct B {}; template void f(); // expected-note 2{{candidate}} template void g(B); } namespace C { template void f(T t); // expected-note 2{{candidate}} template void g(T t); // expected-note {{candidate}} } void h(A::B b) { f<3>(b); // expected-error {{undeclared identifier}} g<3>(b); // expected-error {{undeclared identifier}} A::f<3>(b); // expected-error {{no matching}} A::g<3>(b); C::f<3>(b); // expected-error {{no matching}} C::g<3>(b); // expected-error {{no matching}} using C::f; using C::g; f<3>(b); // expected-error {{no matching}} g<3>(b); } } namespace dr243 { // dr243: yes struct B; struct A { A(B); // expected-note {{candidate}} }; struct B { operator A() = delete; // expected-error 0-1{{extension}} expected-note {{candidate}} } b; A a1(b); A a2 = b; // expected-error {{ambiguous}} } namespace dr244 { // dr244: no struct B {}; struct D : B {}; // expected-note {{here}} D D_object; typedef B B_alias; B* B_ptr = &D_object; void f() { D_object.~B(); // expected-error {{expression does not match the type}} D_object.B::~B(); B_ptr->~B(); B_ptr->~B_alias(); B_ptr->B_alias::~B(); // This is valid under DR244. B_ptr->B_alias::~B_alias(); // FIXME: expected-error {{expected the class name after '~' to name a destructor}} B_ptr->dr244::~B(); // expected-error {{refers to a member in namespace}} B_ptr->dr244::~B_alias(); // expected-error {{refers to a member in namespace}} } } namespace dr245 { // dr245: yes struct S { enum E {}; // expected-note {{here}} class E *p; // expected-error {{does not match previous declaration}} }; } namespace dr246 { // dr246: yes struct S { S() try { // expected-note {{try block}} throw 0; X: ; } catch (int) { goto X; // expected-error {{protected scope}} } }; } namespace dr247 { // dr247: yes struct A {}; struct B : A { void f(); void f(int); }; void (A::*f)() = (void (A::*)())&B::f; struct C { void f(); void f(int); }; struct D : C {}; void (C::*g)() = &D::f; void (D::*h)() = &D::f; struct E { void f(); }; struct F : E { using E::f; void f(int); }; void (F::*i)() = &F::f; } namespace dr248 { // dr248: yes c++11 // FIXME: Should this also apply to c++98 mode? This was a DR against C++98. int \u040d\u040e = 0; #if __cplusplus < 201103L // FIXME: expected-error@-2 {{expected ';'}} #endif } namespace dr249 { // dr249: yes template struct X { void f(); }; template void X::f() {} } namespace dr250 { // dr250: yes typedef void (*FPtr)(double x[]); template void f(double x[]); FPtr fp = &f<3>; template void g(double x[]); // expected-error 0-1{{extension}} FPtr gp = &g<>; } namespace dr252 { // dr252: yes struct A { void operator delete(void*); // expected-note {{found}} }; struct B { void operator delete(void*); // expected-note {{found}} }; struct C : A, B { virtual ~C(); }; C::~C() {} // expected-error {{'operator delete' found in multiple base classes}} struct D { void operator delete(void*, int); // expected-note {{here}} virtual ~D(); }; D::~D() {} // expected-error {{no suitable member 'operator delete'}} struct E { void operator delete(void*, int); void operator delete(void*) = delete; // expected-error 0-1{{extension}} expected-note {{here}} virtual ~E(); }; E::~E() {} // expected-error {{deleted}} struct F { // If both functions are available, the first one is a placement delete. void operator delete(void*, __SIZE_TYPE__); void operator delete(void*) = delete; // expected-error 0-1{{extension}} expected-note {{here}} virtual ~F(); }; F::~F() {} // expected-error {{deleted}} struct G { void operator delete(void*, __SIZE_TYPE__); virtual ~G(); }; G::~G() {} } namespace dr254 { // dr254: yes template struct A { typedef typename T::type type; // ok even if this is a typedef-name, because // it's not an elaborated-type-specifier typedef struct T::type foo; // expected-error {{elaborated type refers to a typedef}} }; struct B { struct type {}; }; struct C { typedef struct {} type; }; // expected-note {{here}} A::type n; A::type n; // expected-note {{instantiation of}} } // dr256: dup 624 namespace dr257 { // dr257: yes struct A { A(int); }; // expected-note {{here}} struct B : virtual A { B() {} virtual void f() = 0; }; struct C : B { C() {} }; struct D : B { D() {} // expected-error {{must explicitly initialize the base class 'dr257::A'}} void f(); }; } namespace dr258 { // dr258: yes struct A { void f(const int); template void g(int); float &h() const; }; struct B : A { using A::f; using A::g; using A::h; int &f(int); template int &g(int); // expected-note {{candidate}} int &h(); } b; int &w = b.f(0); int &x = b.g(0); // expected-error {{no match}} int &y = b.h(); float &z = const_cast(b).h(); struct C { virtual void f(const int) = 0; }; struct D : C { void f(int); } d; struct E { virtual void f() = 0; // expected-note {{unimplemented}} }; struct F : E { void f() const {} } f; // expected-error {{abstract}} } namespace dr259 { // dr259: yes c++11 template struct A {}; template struct A; // expected-note {{previous}} template struct A; // expected-error {{duplicate explicit instantiation}} // FIXME: We only apply this DR in C++11 mode. template<> struct A; template struct A; #if __cplusplus < 201103L // expected-error@-2 {{extension}} expected-note@-3 {{here}} #endif template struct A; // expected-note {{here}} template<> struct A; // expected-error {{explicit specialization of 'dr259::A' after instantiation}} template<> struct A; template<> struct A; template<> struct A {}; // expected-note {{here}} template<> struct A {}; // expected-error {{redefinition}} template struct B; // expected-note {{here}} template struct B; // expected-error {{undefined}} template<> struct B; template struct B; #if __cplusplus < 201103L // expected-error@-2 {{extension}} expected-note@-3 {{here}} #endif } namespace dr261 { // dr261: no #pragma clang diagnostic push #pragma clang diagnostic warning "-Wused-but-marked-unused" // FIXME: This is ill-formed, with a diagnostic required, because operator new // and operator delete are inline and odr-used, but not defined in this // translation unit. // We're also missing the -Wused-but-marked-unused diagnostic here. struct A { inline void *operator new(__SIZE_TYPE__) __attribute__((unused)); inline void operator delete(void*) __attribute__((unused)); A() {} }; // FIXME: These are ill-formed, with a required diagnostic, for the same // reason. struct B { inline void operator delete(void*) __attribute__((unused)); ~B() {} }; struct C { inline void operator delete(void*) __attribute__((unused)); virtual ~C() {} }; struct D { inline void operator delete(void*) __attribute__((unused)); }; void h() { C::operator delete(0); } // expected-warning {{marked unused but was used}} #pragma clang diagnostic pop } namespace dr262 { // dr262: yes int f(int = 0, ...); int k = f(); int l = f(0); int m = f(0, 0); } namespace dr263 { // dr263: yes struct X {}; struct Y { #if __cplusplus < 201103L friend X::X() throw(); friend X::~X() throw(); #else friend constexpr X::X() noexcept; friend X::~X(); #endif Y::Y(); // expected-error {{extra qualification}} Y::~Y(); // expected-error {{extra qualification}} }; } // dr265: dup 353 // dr266: na // dr269: na // dr270: na