// RUN: %clang_cc1 -fsyntax-only -fcxx-exceptions -verify -std=c++11 -Wall %s struct Bitfield { int n : 3 = 7; // expected-error {{bitfield member cannot have an in-class initializer}} }; int a; class NoWarning { int &n = a; public: int &GetN() { return n; } }; bool b(); int k; struct Recurse { int &n = // expected-error {{cannot use defaulted default constructor of 'Recurse' within the class outside of member functions because 'n' has an initializer}} b() ? Recurse().n : // expected-note {{implicit default constructor for 'Recurse' first required here}} k; }; struct UnknownBound { int as[] = { 1, 2, 3 }; // expected-error {{array bound cannot be deduced from an in-class initializer}} int bs[4] = { 4, 5, 6, 7 }; int cs[] = { 8, 9, 10 }; // expected-error {{array bound cannot be deduced from an in-class initializer}} }; template struct T { static const int B; }; template<> struct T<2> { template using B = int; }; const int C = 0, D = 0; struct S { int as[] = { decltype(x)::B(0) }; // expected-error {{array bound cannot be deduced from an in-class initializer}} T x; // test that we handle invalid array bound deductions without crashing when the declarator name is itself invalid operator int[](){}; // expected-error {{'operator int' cannot be the name of a variable or data member}} \ // expected-error {{array bound cannot be deduced from an in-class initializer}} }; struct ThrowCtor { ThrowCtor(int) noexcept(false); }; struct NoThrowCtor { NoThrowCtor(int) noexcept(true); }; struct Throw { ThrowCtor tc = 42; }; struct NoThrow { NoThrowCtor tc = 42; }; static_assert(!noexcept(Throw()), "incorrect exception specification"); static_assert(noexcept(NoThrow()), "incorrect exception specification"); struct CheckExcSpec { CheckExcSpec() noexcept(true) = default; int n = 0; }; struct CheckExcSpecFail { CheckExcSpecFail() noexcept(true) = default; // expected-error {{exception specification of explicitly defaulted default constructor does not match the calculated one}} ThrowCtor tc = 123; }; struct TypedefInit { typedef int A = 0; // expected-error {{illegal initializer}} }; // PR10578 / namespace PR10578 { template struct X { X() { T* x = 1; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} } }; struct Y : X { Y(); }; Y::Y() try { // expected-note{{in instantiation of member function 'PR10578::X::X' requested here}} } catch(...) { } } namespace PR14838 { struct base { ~base() {} }; class function : base { ~function() {} // expected-note {{implicitly declared private here}} public: function(...) {} }; struct thing {}; struct another { another() : r(thing()) {} // expected-error@-1 {{temporary of type 'const PR14838::function' has private destructor}} // expected-warning@-2 {{binding reference member 'r' to a temporary value}} const function &r; // expected-note {{reference member declared here}} } af; } namespace rdar14084171 { struct Point { // expected-note 3 {{candidate constructor}} double x; double y; }; struct Sprite { Point location = Point(0,0); // expected-error {{no matching constructor for initialization of 'rdar14084171::Point'}} }; void f(Sprite& x) { x = x; } } namespace PR18560 { struct X { int m; }; template int f(); struct Y { int b = f(); }; } namespace template_valid { // Valid, we shouldn't build a CXXDefaultInitExpr until A's ctor definition. struct A { A(); template struct B { int m1 = sizeof(A) + sizeof(T); }; B m2; }; A::A() {} } namespace template_default_ctor { struct A { template struct B { int m1 = 0; // expected-error {{cannot use defaulted default constructor of 'B' within 'A' outside of member functions because 'm1' has an initializer}} }; // expected-note@+1 {{implicit default constructor for 'template_default_ctor::A::B' first required here}} enum { NOE = noexcept(B()) }; }; } namespace default_ctor { struct A { struct B { int m1 = 0; // expected-error {{cannot use defaulted default constructor of 'B' within 'A' outside of member functions because 'm1' has an initializer}} }; // expected-note@+1 {{implicit default constructor for 'default_ctor::A::B' first required here}} enum { NOE = noexcept(B()) }; }; } namespace member_template { struct A { template struct B { struct C { int m1 = 0; // expected-error {{cannot use defaulted default constructor of 'C' within 'A' outside of member functions because 'm1' has an initializer}} }; template struct D { int m1 = 0; // expected-error {{cannot use defaulted default constructor of 'D' within 'A' outside of member functions because 'm1' has an initializer}} }; }; enum { // expected-note@+1 {{implicit default constructor for 'member_template::A::B::C' first required here}} NOE1 = noexcept(B::C()), // expected-note@+1 {{implicit default constructor for 'member_template::A::B::D' first required here}} NOE2 = noexcept(B::D()) }; }; } namespace explicit_instantiation { template struct X { X(); // expected-note {{in instantiation of default member initializer 'explicit_instantiation::X::n' requested here}} int n = T::error; // expected-error {{type 'float' cannot be used prior to '::' because it has no members}} }; template struct X; // ok template X::X() {} template struct X; // expected-note {{in instantiation of member function 'explicit_instantiation::X::X' requested here}} } namespace local_class { template void f() { struct X { // expected-note {{in instantiation of default member initializer 'local_class::f()::X::n' requested here}} int n = T::error; // expected-error {{type 'int' cannot be used prior to '::' because it has no members}} }; } void g() { f(); } // expected-note {{in instantiation of function template specialization 'local_class::f' requested here}} } namespace PR22056 { template struct S { int x[3] = {[N] = 3}; }; }