// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
;
// expected-error {{definition of implicitly declared default constructor}}
;
// expected-error {{definition of implicitly declared copy constructor}}
;
C& // expected-error {{definition of implicitly declared copy assignment operator}}
;
// expected-error {{definition of implicitly declared destructor}}
// Make sure that the special member functions are introduced for
// name-lookup purposes and overload with user-declared
// constructors and assignment operators.