Searched defs:CopyAssign (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CXX/class/class.union/
H A Dp1.cpp30 class CopyAssign { // expected-note 2 {{because no assignment operator can be used to copy an object of type 'const CopyAssign'}} class
31 CopyAssign& operator=(CopyAssign& CA) { abort(); }
45 CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assignment operator}}
67 CopyAssign copyassign;
88 struct s5 : CopyAssign { // expected-note {{because no assignment operator can be used to copy an object of type 'const U3::s5'}}
130 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp5 template<typename T> struct CopyAssign { struct
66 template struct CopyAssign<A1>; // expected-note {{here}}
86 template struct CopyAssign<B1>; // expected-note {{here}}
88 template struct CopyAssign<B2>; // expected-note {{here}}
90 template struct CopyAssign<B3>;
97 template struct CopyAssign<C1>; // expected-note {{here}}
128 template struct CopyAssign<D1>; // expected-note {{here}}
131 template struct CopyAssign<D3>; // expected-note {{here}}
134 template struct CopyAssign<D5>; // expected-note {{here}}
137 template struct CopyAssign<D
[all...]

Completed in 3175 milliseconds