// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -fcxx-exceptions %s void fn() = default; // expected-error {{only special member}} struct foo { void fn() = default; // expected-error {{only special member}} foo() = default; foo(const foo&) = default; foo(foo&&) = default; foo& operator = (const foo&) = default; foo& operator = (foo&&) = default; ~foo() = default; }; struct bar { bar(); bar(const bar&); bar(bar&&); bar& operator = (const bar&); bar& operator = (bar&&); ~bar(); }; bar::bar() = default; bar::bar(const bar&) = default; bar::bar(bar&&) = default; bar& bar::operator = (const bar&) = default; bar& bar::operator = (bar&&) = default; bar::~bar() = default; static_assert(__is_trivial(foo), "foo should be trivial"); static_assert(!__has_trivial_destructor(bar), "bar's destructor isn't trivial"); static_assert(!__has_trivial_constructor(bar), "bar's default constructor isn't trivial"); static_assert(!__has_trivial_copy(bar), "bar has no trivial copy"); static_assert(!__has_trivial_assign(bar), "bar has no trivial assign"); void tester() { foo f, g(f); bar b, c(b); f = g; b = c; } template struct S : T { constexpr S() = default; constexpr S(const S&) = default; constexpr S(S&&) = default; }; struct lit { constexpr lit() {} }; S s_lit; // ok S s_bar; // ok struct Friends { friend S::S(); friend S::S(const S&); friend S::S(S&&); }; namespace DefaultedFnExceptionSpec { // DR1330: The exception-specification of an implicitly-declared special // member function is evaluated as needed. template T &&declval(); template struct pair { pair(const pair&) noexcept(noexcept(T(declval()))); }; struct Y; struct X { X(); X(const Y&); }; struct Y { pair p; }; template struct A { pair p; }; struct B { B(); B(const A&); }; // Don't crash here. void f() { X x = X(); (void)noexcept(B(declval())); } template struct Error { void f() noexcept(T::error); Error() noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} expected-error {{type 'char'}} Error(const Error&) noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} Error(Error&&) noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} Error &operator=(const Error&) noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} expected-error {{type 'double'}} Error &operator=(Error&&) noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} ~Error() noexcept(T::error); // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} expected-error {{type 'char'}} }; Error c; // expected-note 2{{instantiation of}} struct DelayImplicit { // FIXME: The location of this note is terrible. The instantiation was // triggered by the uses of the functions in the decltype expressions below. Error e; // expected-note 6{{instantiation of}} }; Error *e; // An exception specification is needed if the exception specification for a // a defaulted special member function that calls the function is needed. // Use in an unevaluated operand still results in the exception spec being // needed. void test1(decltype(declval() = DelayImplicit(DelayImplicit()))); void test2(decltype(declval() = declval())); void test3(decltype(DelayImplicit(declval()))); // Any odr-use needs the exception specification. void f(Error *p) { *p = *p; // expected-note {{instantiation of}} } } namespace PR13527 { struct X { X() = delete; // expected-note {{here}} X(const X&) = delete; // expected-note {{here}} X(X&&) = delete; // expected-note {{here}} X &operator=(const X&) = delete; // expected-note {{here}} X &operator=(X&&) = delete; // expected-note {{here}} ~X() = delete; // expected-note {{here}} }; X::X() = default; // expected-error {{redefinition}} X::X(const X&) = default; // expected-error {{redefinition}} X::X(X&&) = default; // expected-error {{redefinition}} X &X::operator=(const X&) = default; // expected-error {{redefinition}} X &X::operator=(X&&) = default; // expected-error {{redefinition}} X::~X() = default; // expected-error {{redefinition}} struct Y { Y() = default; Y(const Y&) = default; Y(Y&&) = default; Y &operator=(const Y&) = default; Y &operator=(Y&&) = default; ~Y() = default; }; Y::Y() noexcept = default; // expected-error {{definition of explicitly defaulted}} Y::Y(const Y&) noexcept = default; // expected-error {{definition of explicitly defaulted}} Y::Y(Y&&) noexcept = default; // expected-error {{definition of explicitly defaulted}} Y &Y::operator=(const Y&) noexcept = default; // expected-error {{definition of explicitly defaulted}} Y &Y::operator=(Y&&) noexcept = default; // expected-error {{definition of explicitly defaulted}} Y::~Y() = default; // expected-error {{definition of explicitly defaulted}} } namespace PR27699 { struct X { X(); }; X::X() = default; // expected-note {{here}} X::X() = default; // expected-error {{redefinition of 'X'}} } namespace PR14577 { template struct Outer { template struct Inner1 { ~Inner1(); }; template struct Inner2 { ~Inner2(); }; }; template Outer::Inner1::~Inner1() = delete; // expected-error {{nested name specifier 'Outer::Inner1::' for declaration does not refer into a class, class template or class template partial specialization}} expected-error {{only functions can have deleted definitions}} template Outer::Inner2::~Inner2() = default; // expected-error {{nested name specifier 'Outer::Inner2::' for declaration does not refer into a class, class template or class template partial specialization}} expected-error {{only special member functions may be defaulted}} } extern "C" { // expected-note {{extern "C" language linkage specification begins here}} template // expected-error {{templates must have C++ linkage}} void PR13573(const _Tp&) = delete; } namespace PR15597 { template struct A { A() noexcept(true) = default; ~A() noexcept(true) = default; }; template struct B { B() noexcept(false) = default; // expected-error {{does not match the calculated one}} ~B() noexcept(false) = default; // expected-error {{does not match the calculated one}} }; A a; B b; // expected-note {{here}} } namespace PR27941 { struct ExplicitBool { ExplicitBool &operator=(bool) = default; // expected-error{{only special member functions may be defaulted}} int member; }; int fn() { ExplicitBool t; t = true; } } namespace dependent_classes { template struct conditional; template struct conditional { typedef X type; }; template struct conditional { typedef Y type; }; template struct X { X(); // B == false triggers error for = default. using T = typename conditional::type; X(T) = default; // expected-error {{only special member functions}} // Either value of B creates a constructor that can be default using U = typename conditional::type; X(U) = default; }; X x1; X x2; // expected-note {{in instantiation}} template class E { explicit E(const int &) = default; }; template E::E(const int&) {} // expected-error {{definition of explicitly defaulted function}} }